Node Version Manager (NVM) cheatsheet
Check the current version
node -vCheck all releases or only the latest LTS
nvm ls-remote --lts
// only the latest LTS
nvm ls-remote --lts | tail -n 1Check node version installed by nvm
nvm listInstall version
nvm install [version]Use specific node version
nvm use [version]Set default Node version
nvm alias default [version]Install latest LTS version of Node using nvm
nvm install --lts