🖥

Mac + nodebrew で node の特定バージョンをインストールして使う ( 反映されない場合は nodebrew use )

2020/02/16に公開

https://github.com/hokaccha/nodebrew

手順

# curl でインストール
$ curl -L git.io/nodebrew | perl - setup
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
  0     0    0     0    0     0      0      0 --:--:--  0:00:01 --:--:--     0
  0     0    0     0    0     0      0      0 --:--:--  0:00:01 --:--:--     0
100 24634  100 24634    0     0  10729      0  0:00:02  0:00:02 --:--:-- 10729
Fetching nodebrew...
Installed nodebrew in $HOME/.nodebrew

========================================
Export a path to nodebrew:

export PATH=$HOME/.nodebrew/current/bin:$PATH
========================================

# パスを設定
# ~/.bash_profile などに書いておくと良い

$ export PATH=$HOME/.nodebrew/current/bin:$PATH

# 特定のバージョンをインストール
$ nodebrew install v13.6.0
Fetching: https://nodejs.org/dist/v13.6.0/node-v13.6.0-darwin-x64.tar.gz
######################################################################################################################################## 100.0%
Installed successfully

# まだ反映されていない
$ node -v
v13.8.0

# 反映するには use 
$ nodebrew use v13.6.0
use v13.6.0

# 反映された
$ node -v
v13.6.0

Original by Github issue

https://github.com/YumaInaura/YumaInaura/issues/2990

チャットメンバー募集

何か質問、悩み事、相談などあればLINEオープンチャットもご利用ください。

https://line.me/ti/g2/eEPltQ6Tzh3pYAZV8JXKZqc7PJ6L0rpm573dcQ

Twitter

https://twitter.com/YumaInaura

公開日時

2020-02-16

Discussion