Homebrewでインストールしたnode.jsのアンインストール
Homebrewでインストールしたnode.jsのアンインストール
nodebrewのインストール
1 |
$ curl -L git.io/nodebrew | perl - setup |
node.jsのインストール
1 |
$ nodebrew install-binary latest |
1 2 3 4 |
$ nodebrew list v5.7.0 current: none |
1 |
$ nodebrew use v5.7.0 |
1 2 3 4 |
$ nodebrew list v5.7.0 current: v5.7.0 |
npmはnodeと一緒にインストールされる
1 2 |
$ npm -v 3.6.0 |
1 2 |
$ which npm /Users/JaneDoe/.nodebrew/current/bin/npm |