Skip to content

Latest commit

 

History

History
27 lines (22 loc) · 790 Bytes

File metadata and controls

27 lines (22 loc) · 790 Bytes

Node.js

macOS

anyenv, nodenv

anyenvはnodenvやrbenvなどのプログラミング言語の複数のバージョンを管理する**env系をまとめて管理できるツールである.

anyenvからNode.jsのバージョン管理ツールのnodenvをインストールすることを推奨する.

# install anyenv
$ brew install anyenv
$ echo 'eval "$(anyenv init -)"' >> ~/.bash_profile # zshを使っている人は.~/.zprofile or ~/.zshrc
$ exec $SHELL -l
$ anyenv install --init
$ exec $SHELL -l

# install nodenv
$ anyenv install nodenv
$ exec $SHELL -l

# install node.js, npm, yarn
$ cat .node-version # > 12.16.3
$ nodenv install 12.16.3
$ npm i -g yarn

参考