1
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?

More than 1 year has passed since last update.

nodenvで構築した環境のnodeバージョンを上げる

Last updated at Posted at 2023-02-24

アップデートの対象のNodeのバージョンがあるかを確認

nodenv --listでインストールしたいバージョンがあるかを確認できる

nodenv install --list
# 出力例
# 0.1.14
# 0.1.15
# 0.1.16
# 0.1.17
# ...

欲しいバージョンがない場合は nodenv 内部で使われている node-build というツールを更新すると最新化される。
Mac環境の場合は以下のコマンドで更新可能。

brew upgrade node-build

対象バージョンをインストール

nodenv install xx.xx.xx
# ex: nodenv install 18.14.0 など

.node-versionを更新

nodenv local xx.xx.xx
# nodenv local 18.14.0 など

動確

node --version
# 出力例
# v18.14.0
1
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
1
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?