Macにnode.jsをいれたい

homebrewはとりあえずはいっているのでインストールは省略。

nodebrewのインストール
$ brew install nodebrew

nodebrewのセットアップ
$ nodebrew setup

node.jsのインストール
$ nodebrew install-binary バージョン

安定板をインストールすることもできる
$ nodebrew install-binary stable

インストールしたバージョンの確認
$ nodebrew ls

使用するバージョンの指定
$ nodebrew use バージョン

PATHを通す
$ echo ‘export PATH=$HOME/.nodebrew/current/bin:$PATH’ >> ~/.bash_profile

.bash_profileを再読み込み
$ source ~/.bash_profile

nodeのバージョン確認
$ node -v

nodeパッケージマネージャーのバージョン確認
$ npm -v

コメント

タイトルとURLをコピーしました