概要
Homebrew + nodebrew でNode.jsをPCにインストールする。
- Homebrewとは・・・macOS用パッケージマネージャー。
- nodebrewとは・・・Node.jsのバージョン管理用パッケージ。
環境
- macOS High Sierra
- バージョン 10.13.4
手順1. Homebrewをインストールする
$ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
手順2. nodebrewをインストールする
curlでインストール
$ curl -L git.io/nodebrew | perl - setup
.bash_profileにPATHを追加する
$ echo 'export PATH=$HOME/.nodebrew/current/bin:$PATH' >> ~/.bash_profile
.bash_profileの変更を反映させる
$ source ~/.bash_profile
インストールされたか確認する
$ nodebrew help #ヘルプ表示
参考:https://github.com/hokaccha/nodebrew#install
手順3. Node.jsをインストールする
現在インストールできるバージョンのリストを表示するコマンド
$ nodebrew ls-all
バージョンを指定してインストールする
$ nodebrew install <version>
もしくは
$ nodebrew install-binary stable #安定版
$ nodebrew install-binary latest #最新版
その他
バージョンを切り替えるコマンド
$ nodebrew use <version>
もしくは
$ nodebrew use stable #安定版
$ nodebrew use latest #最新版
バージョンを確認するコマンド
$ node -v
npm(Node Package Manager)も自動で入っている。
$ npm -v #npmのバージョン