18
14

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

【JavaScript】nodebrew経由でNode.jsとnpmをアップデートする

Last updated at Posted at 2019-08-04

以前にnodebrew経由でNode.jsをインストールしていたのですが、それをアップデートしました。

以下、昔書いた記事です。

nodebrewでNode.jsをインストールする。

Homebrew

最初にnodebrewを管理しているHomebrewをアップデートします。

$ brew update

Node.js

現在のバージョンを確認します。

$ nodebrew list
v10.1.0

current: v10.1.0

アップデートします。

$ nodebrew install-binary stable

再度確認すると、現在nodebrewで管理されているNode.jsのバージョンが増えました。

$ nodebrew list
v10.1.0
v12.7.0

current: v10.1.0

安定版を使います。

$ nodebrew use stable
use v12.7.0

バージョンの切り替えが確認できました。

$ node -v
v12.7.0

npm

現在のバージョンを確認します。

$ npm -v
5.6.0

アップデートします。

$ npm update -g npm

バージョンの切り替えが確認できました。

$ npm -v
6.10.2

参考記事

Node.jsのアップデートはこちらの記事を参考にしました。
nodebrewでNode.jsをアップデートする

こちらの記事で紹介されているNode.jsのバージョン管理ツールはnというツールです。
今回はnpmのアップデート部分のみ参考にさせていただきました。
Node.jsとnpmをアップデートする方法

各ツールの繋がりがとっても分かりやすく説明されています。
npm とか bower とか一体何なんだよ!Javascript 界隈の文脈を理解しよう

18
14
1

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
18
14

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?