Quantcast
Channel: Node.jsタグが付けられた新着記事 - Qiita
Viewing all articles
Browse latest Browse all 8832

homebrewでnodenvをサクッとインストール

$
0
0
前提条件 いづれもインストールされていない状態を想定 $which yarn $which node $which npm homebrewでNode.jsをインストール $brew install nodenv $nodenv -v nodenv 1.4.0 bash_profileに追記 $echo 'export NODENV_ROOT="$HOME/.nodenv"' >> ~/.bash_profile $echo 'export PATH="$NODENV_ROOT/bin:$PATH"' >> ~/.bash_profile $echo 'eval "$(nodenv init -)"' >> ~/.bash_profile 再起動 $source ~/.bash_profile nodenvを利用してNode.jsをインストールとセットアップ $nodenv install 14.15.0 $nodenv global 14.15.0 $node -v v14.15.0 $npm -v 6.14.8 $which node /Users/satoru/.nodenv/shims/node

Viewing all articles
Browse latest Browse all 8832

Trending Articles