Skip to content

Instantly share code, notes, and snippets.

@nnennajohn
Forked from chranderson/nvmCommands.js
Last active August 1, 2020 01:31
Show Gist options
  • Save nnennajohn/f1a09763fa12b5ea877761075090c0e2 to your computer and use it in GitHub Desktop.
Save nnennajohn/f1a09763fa12b5ea877761075090c0e2 to your computer and use it in GitHub Desktop.
Useful NVM commands
// check version
node -v || node --version
// list installed versions of node (via nvm)
nvm ls
// install specific version of node
nvm install 6.9.2
// set default version of node
nvm alias default 6.9.2
// switch version of node
nvm use 6.9.1
nvm ls-remote | grep -i 'latest'
or all versions starting with v12
nvm ls-remote | grep -i 'v12'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment