Answers for "nvm version command"

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

install node using nvm windows

First install NVM - https://stackoverflow.com/questions/25654234/node-version-manager-nvm-on-windows -2.nd answer
nvm install latest
nvm use 15.4.0 [instead of 15.4.0 use whatever number cmd spills on you]
Posted by: Guest on December-17-2020
1

nvm show available versions

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

install nvm

curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.34.0/install.sh | bash
Posted by: Guest on April-25-2020

Browse Popular Code Answers by Language