0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Mac で Node.js バージョンアップ

Posted at

はじめに

毎回手順忘れるので、備忘録として残しておこうと思います。

使用するミドルウェア

  • Homebrew
  • nodebrew
  • Node.js
  • npm

Homebrew のインストール

以下URLからインストールコマンドをコピーして、コマンドを叩きます

Press Return/Enter to continue ~~~ という文章が表示されたら、Enterを押して、次に進みます。

Installation successful が表示されたらOKです。

次に Next Steps と記載されている箇所にコマンドが表示されているので、そのコマンドを叩きます

eval "$(/opt/homebrew/bin/brew shellenv)"

バージョンを確認して、バージョンが表示されたらOKです

brew -v

nodebrew のインストール

以下コマンドを叩きます

brew install nodebrew

バージョンを確認して、バージョンが表示されたらOKです

nodebrew -v

プロファイルの確認

.zprofile を確認します。

cat ~/.zprofile

以下が表示されていればPATHが通っていることになります

eval "$(/opt/homebrew/bin/brew shellenv)"
export PATH=$HOME/.nodebrew/current/bin:$PATH

もし記載がなければ、PATHを通す必要があるので zsh の場合は zprofile に上記を追加します。

bash の場合は .bash_profile になるかと思います。

Node.jsのインストール

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

nodebrew ls-remote

インストールしたいバージョンをインストールします

今回はLTSをインストールしました

nodebrew install-binary v22.12.0

以下コマンドでインストールしたバージョンを確認することができます

任意のバージョンがあるか確認します

nodebrew list

使いたいバージョンを指定します

nodebrew use v22.12.0

最後にバージョンを確認します。上述のコマンドで指定したバージョンが表示されればOKです。

npm のバージョンも勝手に上がってくれます。

 node -v

参考文献

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?