【Mac】nodenvのセットアップ
備忘録的に残しておく✍️
nodenvをzshでセットアップ
まずは、ソースを.nodenv
にクローン。
$ git clone https://github.com/nodenv/nodenv.git ~/.nodenv
nodenv install
なども行えるようにnode-build
を~/.nodenv/node-build
にクローン。
$ git clone https://github.com/nodenv/node-build.git ~/.nodenv/plugins/node-build
.zshrc
に下記を追記して完了。
export PATH="$HOME/.nodenv/bin:$PATH" eval "$(nodenv init -)"
あとはシェルを開き直して、ちゃんとセットアップできたか確認しましょう🏃🏻♂️
$ curl -fsSL https://github.com/nodenv/nodenv-installer/raw/master/bin/nodenv-doctor | bash Checking for `nodenv' in PATH: /usr/local/bin/nodenv Checking for nodenv shims in PATH: OK Checking `nodenv install' support: /usr/local/bin/nodenv-install (node-build 3.0.22-4-g49c4cb9) Counting installed Node versions: none There aren't any Node versions installed under `~/.nodenv/versions'. You can install Node versions like so: nodenv install 2.2.4 Auditing installed plugins: OK
てな感じで本日も以上になります🍺