Install Node.js on Linux

PHOTO EMBED

Thu Jun 13 2024 03:35:26 GMT+0000 (Coordinated Universal Time)

Saved by @jrray

# 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)
npm install 20
# verifies the right Node.js version is in the environment
node -v # should print `v20.14.0`
# verifies the right NPM version is in the environment
npm -v # should print `10.7.0`
content_copyCOPY