Last active
August 25, 2023 16:17
-
-
Save morjuax/6a3067dc64efd39f23677d53f0827f5c to your computer and use it in GitHub Desktop.
nvm commands
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
1) List available versions | |
nvm ls-remote | |
1.1) list installed versions | |
nvm list | |
2) Install a specific version | |
nvm install 8.16.2 | |
2.1) Install the latest release | |
nvm install node | |
3) Switch to another version | |
nvm use 10.16.3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment