0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【Node.js】Node.jsのVersion管理

Last updated at Posted at 2023-11-18

Node.jsのVersion管理ツールは色々あり、主なものは以下のもの。

  • nvm (Node Version Manager)
    unix, macOSで動作可能。
    Windows版はnvm-windows
  • fnm
    unix, macOS, windowsで動作可能。
    Rustで作られた高速管理ツール
  • Volta
    unix, macOS, windowsで動作可能。
    Rustで作られた高速管理ツール
  • n
    unix, macOS, windows WSLで動作可能。
    Windows版は無さそう。
    非常にシンプルな仕様

今回は、Microsoft公式ページでも紹介されており、Windowsでよく使われているnvm-windowsの使い方を紹介する。

nvm-windows

インストール方法

  1. 下記URLからnvm-setup.zipをダウンロードする
    https://github.com/coreybutler/nvm-windows/releases
  2. 展開して、nvm-setup.exeを実行する

使い方

  1. nvmのversion確認
    nvm version
  2. インストール可能なNode.js Versionの確認
    nvm ls available
  3. 特定のVersionのNode.jsのインストール
    nvm install 18.18.1
  4. LTSで最新のVersionのNode.jsのインストール
    nvm install lts
  5. 特定のVersionのNode.jsのアンインストール
    nvm uninstall 18.18.1
  6. インストールされているNode.jsのVersionを確認
    nvm ls
  7. 特定のNode.js Versionに切り替える
    nvm use 20.9.0

まとめ

今回は、WindowsにおけるNode.jsのVersion管理ツールについて紹介した。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?