NVM Cheat Sheet #
Lists all of the available versions of NodeJs & iojs #
nvm ls-remote
List locally installed version #
nvm ls
Install the version 16.17.1 (see ls-remote for available options) #
nvm install 16.17.1
Switch to and use the installed 16.17.1 version #
nvm use 16.17.1
Show the path to the installed node version #
nvm which 16.17.1
Show what is the current installed nvm version #
nvm current
Set the default node to the installed 0.10.32 version #
nvm alias default 16.17.1