Created
May 19, 2015 13:58
-
-
Save pinalbhatt/c80972acb2507646f454 to your computer and use it in GitHub Desktop.
NVM - Node Version Manager
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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