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?

More than 1 year has passed since last update.

Node.jsのバージョン切り替え方法(NVM)

Posted at

はじめに

NVMを利用したNode.jsのバージョン切り替え方法をメモ書き程度に記載しておきます。

NVMとは

Node Version Managerの略です。
これを利用することで、複数バージョンのNode.jsを切り替えて使うことができるようになります。

NVMのインストール

以下GitHubから取得します。
https://github.com/coreybutler/nvm-windows/releases
nvm-setup.zipをダウンロードし、中のexeを実行してください。

切り替え方法

変更したいバージョンのNode.jsをインストールします。

nvm install 16.13.0

次に上記でインストールしたバージョンに切り替えます。

nvm use 16.13.0

これでOKです。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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?