switch node version using n code example
Example 1: nvm switch version of node
// switch version of node
nvm use 6.9.1
Example 2: switch node version
npm install -g n # Install n globally
n 0.10.33 # Install and use v0.10.33
// switch version of node
nvm use 6.9.1
npm install -g n # Install n globally
n 0.10.33 # Install and use v0.10.33