Answers for "switch node version"

17

check node version

node --version  
//or
node -v

//v12.15.0
Posted by: Guest on July-03-2020
3

list all node versions mac

$ nvm ls
Posted by: Guest on May-22-2020
4

find node version

node -v

OR

node --version
Posted by: Guest on May-25-2020
0

switch node version

npm install -g n   # Install n globally
n 0.10.33          # Install and use v0.10.33
Posted by: Guest on April-14-2021
2

use a specific version of node

nvm use {Node version}
Posted by: Guest on May-22-2020
1

how to change node version

nvm use --delete-prefix $NODE_VERSION

example:
nvm use --delete-prefix v8.9.4
Posted by: Guest on April-27-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language