🙆‍♀️

nvm (node version manager) のインストール

2022/06/12に公開

最新のコマンドはこちらに記載されています
https://github.com/nvm-sh/nvm#installing-and-updating

インストール

  • curl の場合
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash
  • wget の場合
wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash

インストール後のバージョン確認

nvm --version

結果)

0.39.1

LTSのバージョンをインストール

nvm install --lts

結果)

Installing latest LTS version.
Downloading and installing node v16.15.1...
Downloading https://nodejs.org/dist/v16.15.1/node-v16.15.1-darwin-x64.tar.xz...
######################################################################### 100.0%
Computing checksum with shasum -a 256
Checksums matched!
Now using node v16.15.1 (npm v8.11.0)
Creating default alias: default -> lts/* (-> v16.15.1)

node のバージョンを確認

node -v

結果)

v16.15.1

npm のバージョンを確認

npm -v

結果)

8.11.0

Discussion