Answers for "nvm package"

1

nvm commands

//////////// For Basic use //////////// 

// check version
node -v || node --version

// list installed versions of node (via nvm)
nvm ls

// switch version of node
nvm use 6.9.1

// install a specific version of node
nvm install 6.9.2

// Set 6.1.0 (or another version) as default
nvm alias default 6.1.0

// To list available remote versions on Windows 10 you can type
nvm list available
Posted by: Guest on February-05-2021
1

nvm node version

nvm ls
Posted by: Guest on October-04-2020

Browse Popular Code Answers by Language