25
27

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.

Windowsでnodeのバージョン切り替え -nodlist の使い方

Posted at

###公式
https://github.com/nullivex/nodist

###インストール済みのバージョンを調べる

nodist
  7.2.1
  7.8.0
  7.9.0
  7.10.0
> 10.14.1  (global: 10.14.1)

10.14.1が設定されていることが分かります。

###インストールできるNode.jsのバージョンを調べる

nodist dist
  0.1.14
  0.1.15
  0.1.16
  0.1.17
  0.1.18
  0.1.19
  0.1.20
・・・

###インストールする

nodist + 10.14.1

###使用するバージョンを切り替える

nodist global 10.14.1

// 特定のディレクトリでのみ切り替えたい場合
nodist local 10.14.1

// ターミナル内のみで有効
nodist env 10.14.1

###アンインストールする

nodist - 10.14.1
25
27
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
25
27

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?