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 | |
// install specific version of node | |
nvm install v14.17.6 | |
// list installed versions of node (via nvm) | |
nvm ls | |
// switch version of node | |
nvm use 14.17.6 |
Comments
Post a Comment