nvm list node versions code example

Example 1: several node versions

several node versions

Example 2: use a specific version of node

nvm use {Node version}

Example 3: 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

Example 4: nvm for node

curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash