Answers for "how to switch node version using npm"

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
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 "how to switch node version using npm"

Code answers related to "Javascript"

Browse Popular Code Answers by Language