Skip to content

Instantly share code, notes, and snippets.

@GUIEEN
Forked from chranderson/nvmCommands.js
Last active October 5, 2019 13:31
Show Gist options
  • Save GUIEEN/0e3dce30b8e44760594575174aa78dd3 to your computer and use it in GitHub Desktop.
Save GUIEEN/0e3dce30b8e44760594575174aa78dd3 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
// to list available remote versions of node (via nvm)
nvm ls-remote
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment