LoginSignup
1
0

More than 1 year has passed since last update.

windows11 で node.js を複数バージョン使うnvm

Posted at

nvm とは?

複数のnode.js、npmを簡単に切り替えることができる

インスコ

にアクセスして、nvm-setup.exeをダウンロード、インスコ。

powershellを開く

// インスコ可能な node.js 一覧を表示
nvm list available

//LTSが安定版なので、それをインスコするのがおすすめ
nvm install 18.16.0

//インスコ完了したら use を使って切り替え
nvm use 18.16.0

// バージョン確認
node -v
v18.16.0
npm -version
9.5.1

node.js のバージョンに応じて、npmも自動で変わる。

1
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
1
0