1
2

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.

【Mac】nodebrewでNode.jsのバージョン管理を行う

Last updated at Posted at 2019-07-07

自分のメモ用に。

OSのバージョン

mac OS Mojave 10.14.5

前提

Homebrew、Nodeberewをインストールしてあること

現在インストールされているバージョンを表示する

nodebrew ls

インストール可能なバージョンを表示する

nodebrew ls-remote

バージョンを指定してインストールする

nodebrew install [バージョン名]

バージョンを指定してアンインストールする

nodebrew uninstall [バージョン名]

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

nodebrew use [バージョン名]

バージョンを切り替える際は、以下のようにすると良いでしょう。

  1. 使用したいバージョンをインストールする
  2. バージョンを切り替える
  3. 不要なバージョンをアンインストールする

バージョン確認

最後に、今使用しているバージョンを確認し、使用したいバージョンに切り替わっていればOKです。

node -v
1
2
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
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?