LoginSignup
0
0

More than 1 year has passed since last update.

nodenvコマンドまとめ

Last updated at Posted at 2021-10-06

インストール可能なバージョンの一覧

$ nodenv install -l

バージョンのインストール

$ nodenv install 16.3.0

インストール済みバージョンの一覧

$ nodenv versions

バージョン切り替え

# ローカル(カレントディレクトリ配下)で利用するNode.jsのバージョンを設定する
$ nodenv local 15.14.0

# グローバル(システム全体)で利用するNode.jsのバージョンを設定する
$ nodenv global 16.3.0

バージョン確認

node -v
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0