Comandos úteis do NVM (e como checar as versões do Node, NPM and NVM)
List locally installed versions of Node:
nvm ls
or nvm list node
List available remote versions of Node:
nvm ls-remote
Install specific version of Node:
nvm install 18.16.1
Install latest LTS (Long Term Support) version of Node:
nvm install --lts
Install latest stable version of Node:
nvm install stable
Switch to another version of Node:
nvm use 20.5.1
Path to where a specific Node version is installed:
nvm which 18.16.1
Uninstall a specific Node version:
nvm uninstall 20.5.1