👻

nodebrewでnodeバージョン管理

2022/02/02に公開1

nodebrewでnodeのバージョンを管理する際のメモ。

手順

1. nodebrewをインストール

brew update
brew install nodebrew

インストールされたことを確認。

nodebrew -v

2. setupを実行、path追加

nodebrewの設定ファイルを作成してくれる、setupを実行する。

nodebrew setup

~/.zshrcまたは~/.bashrcにパスを追加。

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

sourceコマンドで、パスを読み込ませる。

source ~/.zshrc

3. nodeをインストール

stableバージョンをインストール。

nodebrew install stable

インストール済みのnode versionを確認。

node ls

v16.13.2を使用する。

nodebrew use v16.13.2

参考

https://github.com/hokaccha/nodebrew#install

Discussion

SakuraSakura

こちらの記事参考にnodeいれさせていただきました!

node ls → nodebrew ls
ではないでしょうか?まちがっていたらすいません!