Skip to content

Instantly share code, notes, and snippets.

@pinalbhatt
Created May 19, 2015 13:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pinalbhatt/c80972acb2507646f454 to your computer and use it in GitHub Desktop.
Save pinalbhatt/c80972acb2507646f454 to your computer and use it in GitHub Desktop.
NVM - Node Version Manager
#https://github.com/creationix/nvm
nvm ls #If you want to see what versions are installed
nvm ls-remote #If you want to see what versions are available to install
nvm current
nvm install <version>
nvm install 0.12.3
nvm install iojs 2.0.2
nvm use 0.10
nvm use <version>
nvm use iojs 2.0.2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment