macOS Sierraでnodeを使えるようにする方法

homebrewでnodeをインストールする方法もあるが、開発環境としてパッケージのバージョン管理をしたいので、node専用のパッケージ管理環境 nodebrewを使用してインストールする

事前に、brew経由でnodeをインストールしている場合は、アンインストールする。

nodebrewのインストール

homebrew経由だと、うまく動作しない

$ curl -L git.io/nodebrew | perl - setup

環境変数にパスを通す

$ echo 'export PATH=$HOME/.nodebrew/current/bin:$PATH' >> ~/.bash_profile

※.bash_profileが既存する場合は、修正もしくは追記する。

反映させる

$ source ~/.bash_profile

インストール可能なバージョンの一覧を表示

$ nodebrew ls-all

バイナリの安定版をインストール

$ nodebrew install-binary stable

インストール済みのバージョンを確認

$ nodebrew ls
v7.9.0

current: none

使用するバージョンを指定

$ nodebrew use v7.9.0

選択されているバージョンを確認

$ node -v
v7.9.0