Skip to content

Instantly share code, notes, and snippets.

@VinothiniBalakrishnan
Forked from chranderson/nvmCommands.js
Created March 19, 2020 07:26
Show Gist options
  • Save VinothiniBalakrishnan/72f25e663d4365d2dbb4e35b5b7eec4c to your computer and use it in GitHub Desktop.
Save VinothiniBalakrishnan/72f25e663d4365d2dbb4e35b5b7eec4c 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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment