🫠

Node.jsのインストール方法(macOS M2),curlコマンド nvm,npmについて軽く

2024/12/22に公開

##記載する内容
macOS M2でのNode.jsのインストール方法
各コマンドや概念の簡単な説明

##インストール方法
以下のサイトにアクセス。
https://nodejs.org/en/download/package-manager
記載のコマンドをTerminalで実行(以下はv22.12.0のインストール)

# installs nvm (Node Version Manager)
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash

# download and install Node.js (you may need to restart the terminal)
nvm install 22

# verifies the right Node.js version is in the environment
node -v # should print `v22.12.0`

# verifies the right npm version is in the environment
npm -v # should print `10.9.0`

##何をやっているのか

Discussion