Open1

Nodebrew

MattznMattzn

Nodebrewを使ってnodejsをインストール

brew install nodebrew
// nodejsの安定版インストール
nodebrew install-binary stable

// インストールされているnodeのリスト確認
nodebrew ls
// バージョン指定
nodebrew use v18.9.0

↑これで-bash: node: command not foundが出る場合
nodeのPathが通っていない

nodebrew setup
echo 'export PATH=$HOME/.nodebrew/current/bin:$PATH' >> ~/.bash_profile
source ~/.bash_profile