📝
nodebrewについてメモ
nodebrewとは
Node.jsのバージョン管理ツール
インストール
homebrewでインストール
$ brew install nodebrew
nodebrew セットアップ
以下のコマンドでセットアップ実行
$ nodebrew setup
PATHの設定
zshの場合.zshrc
に、bashの場合.bash_profile
にpathを設定
$ vi ~/.zshrc
+ export PATH=$HOME/.nodebrew/current/bin:$PATH
シェルの設定を反映
$ source ~/.zshrc
使用方法
インストール可能な Node.js のバージョンを確認
$ nodebrew ls-remote
インストール可能な Node.js のバージョンを指定して、インストール
$ nodebrew install v18.0.0
インストールしたバージョンを有効にする
$ nodebrew use v18.0.0
Node.js のバージョン確認
$ node -v
v18.0.0
Discussion