Last active
March 21, 2018 10:59
-
-
Save silversonicaxel/2dd7391d265ee586e87b9dac482ab473 to your computer and use it in GitHub Desktop.
NVM #nodejs #nvm
This file contains 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
// install node version | |
nvm install 7.0.0 | |
nvm install 4.7.3 | |
// use differen node version | |
nvm use 7.0.0 | |
// list versions of node | |
nvm list | |
// set default node version | |
nvm alias default 7.0.0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment