23
31

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.

nodistの基本操作

Posted at

nodistとは

WindowsでNode.jsのバージョン管理を行うためのツールです。
他にも、nodebrewやnvmなどがあり、こちらはMacやLinuxで利用できるようです。

nodistでできること

Node.jsの各バージョンのインストール・アンインストールと、バージョン切り替えができます。

よく使うコマンド

nodistインストール時に使うコマンド

nodistに関する依存ファイルをアップデートする
nodist selfupdate
nodist update

Node.jsのインストール・アンインストール

最新バージョンのNode.jsをインストール

最新安定版

nodist stable

最新版

nodist latest
指定バージョンのNode.jsをインストール
nodist add v7.2.0
nodist + v07.2.0
指定バージョンのNode.jsをアンインストール
nodist rm v7.2.0
nodist - v7.2.0

インストールされたNode.jsの確認・切り替え

インストールできるNode.jsのバージョン一覧を見る
nodist dist
nodist ds
インストールされているNode.jsのバージョン一覧を見る
nodist list
nodist ls
nodist
Node.jsバージョンの切り替え
nodist use v7.2.0
nodist v7.2.0
23
31
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
23
31

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?