node.jsの入れ方

Newest

説明しよう

Node.jsの入れ方 (npmも同時に入ります)

  • とりあえず、最新版 (Ver 22.3.0 current) On Linux With NVM でいきます。
    # installs nvm (Node Version Manager)
    curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/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.3.0`
# verifies the right NPM version is in the environment
npm -v # should print `10.8.1`
  • 罠としては、
    curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash
    したあと、一回ログアウトして入りなおすか、bash にシェルを読ませてPATHを追加しないと、次の
nvm install 22

が動きません。