ablog

不器用で落着きのない技術者のメモ

macOS に node.js をインストールする

インストール

nodebrew
  • インストール
$ brew install nodebrew
$ /usr/local/opt/nodebrew/bin/nodebrew setup_dirs
  • ~/.bash_profile に以下を追記
# nodebrew
export PATH=/usr/local/var/nodebrew/current/bin:$PATH
export NODEBREW_ROOT=/usr/local/var/nodebrew
  • ~/.bashrc を読み込む
$ source ~/.bash_profile
$ mkdir -p /usr/local/var/nodebrew/src
node.js
  • インストール
$ nodebrew install-binary latest
  • 使用する node.js のバージョンを選択
$ nodebrew use latest
use v15.5.0
  • node.js のバージョンを表示
$ node -v
v15.5.0