7
10

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

macOS に Homebrew、nodebrew、Node.js をインストール

Last updated at Posted at 2019-04-23

macOS に Homebrew nodebrew Node.js をインストールします。

環境

  • macOS Big Sur バージョン 11.2.3

インストールするパッケージ

2021/04/22 時点でインストールするパッケージは次の通りです。

  • Homebrew 3.1.3
  • nodebrew 1.0.1
  • Node.js 14.16.1 LTS推奨版
  • npm 6.14.12

Homebrewのインストール

  • インストールするには、以下のコマンドをターミナルで実行します。
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

https://brew.sh/index_ja.html

nodebrewのインストール

  • インストールするには、以下のコマンドをターミナルで実行します。
brew install nodebrew
  • nodebrewのディレクトリを作成します。
mkdir -p ~/.nodebrew/src

Node.jsのインストール

  • インストール可能なバージョンを確認するには、以下のコマンドをターミナルで実行します。
nodebrew ls-remote
  • Node.js LTS(推奨版)をインストールします。
nodebrew install-binary v14.16.1
  • インストールされたNode.jsの一覧を確認します。
nodebrew ls
  • インストールされたNode.jsから、LTS(推奨版)を有効にします。
nodebrew use v14.16.1

※ Node.js のバージョンを切り替えて使えるので、とても便利です。

パスを通す

  • vim などで ~/.zshrc に次を追加します。
~/.zshrc
export PATH=$HOME/.nodebrew/current/bin:$PATH
  • 設定を読み込むために、ターミナルを再起動させるか、以下のコマンドを実行します。
source ~/.zshrc
  • Node.jsのバージョンを確認します。
node -v
  • npmのバージョンを確認します。
npm -v
7
10
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
10

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?