nvm
Information
List currently installed node versions
nvm lsList available remote node versions for install
nvm ls-remoteShow current active node version
nvm currentShow path for specified node version
nvm which <version>Installing Versions
Install latest node release
nvm install nodeInstall specific node release (eg. LTS or version number)
nvm install --lts
nvm install <version>
nvm install v16Install node version specified in project via .nvmrc file
npm installSwitching Versions
Switch to system node version
nvm use systemSwitch to a specific node version (eg. LTS or version number)
nvm use --lts
nvm use <version>
nvm use v16Use node version specified in project via .nvmrc file
npm useRun Node Commands
Run node scripts for specific versions directly
nvm run <version> <command>Last updated