Macにnode.jsが入っていなかったので入れてみました。
目的はNuxt.jsを触るため。Vue.jsは使っていたけど、Nuxtが出てきてから全く触っていなかったので。
目次
Homebrew インストール
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
Nodebrewインストール
brew install nodebrew
環境パス
echo 'export PATH=$PATH:$HOME/.nodebrew/current/bin' >> ~/.bash_profile
無かったら作る
mkdir -p ~/.nodebrew/src
インストール
nodebrew install-binary stable
インストールしたバージョンの確認
nodebrew list
v12.5.0
使う
nodebrew use v12.5.0
また、パス通す
echo 'export PATH=$PATH:/Users/jsuzuki/.nodebrew/current/bin' >> ~/.bashrc
bash_profileに追記
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
反映
source ~/.bash_profile