A collection of personal and technical notes.
Set the default version.
nvm alias default <version>
# e.g.
nvm alias default 18
Check the current version of Node/NPM being used.
nvm current
Downloads and installs a specific Node/NPM <version>
.
nvm install <version>
List all of the available local versions of Node/NPM.
nvm ls
List all of the available remote versions of Node/NPM.
nvm ls-remote
Activate a specific version of Node/NPM using an <alias>
in the current shell.
nvm use <alias>