-
-
Save sardor01/1213ae0d0bc0c0d596a0e41455ffb40b to your computer and use it in GitHub Desktop.
Useful NVM commands
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
// 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