1
1

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 5 years have passed since last update.

Windows10 Node.jsのバージョン管理

Posted at

背景

windows10でnode.jsをインストール、バージョン管理の方法についてまとめる。

開発環境
windows10 64bit

結論

この記事がとても参考になった。m(_ _)m
nvm-windowsでNode.jsバージョン管理

方法

nvmのwindows版であるnvm-windowsをインストール
coreybutler/nvm-windows

  • nvm-setup.zipをダウンロード
  • c直下に配置
  • コマンドプロントを開く
> nvm --version
Running version 1.1.7
> nvm list available

今回は10.22をインストール

> nvm install 10.22

インストール後、使用バージョンを指定

> nvm use 10.22
> node -v
v10.22.0
> npm version
6.14.6

まとめ

  • node.jsの公式サイトからダンロードするよりもこちらの方がバージョン管理が楽
1
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?