Be the first user to complete this post

  • 0
Add to List

set the default node version using nvm

If you are using nvm for managing nodejs(which is the recommended way), you can easily ensure that the same version of nodejs is available in all terminal windows or tabs. Below are some helpful commands to achieve that. To check your current, active node version

node --version
To check whats node versions are locally installed
nvm ls
To install a particular node version
nvm install v7.3.0
To set a certain node version as the default
nvm alias default v7.3.0
Hope this helps!



Also Read:

  1. Installing, Listing and Uninstalling packages using npm
  2. Unit test your Nodejs RESTful API using mocha
  3. Testing promise sequence using mocha, chai, chai-as-promised, sinon
  4. Access the request body of a post request in your nodejs - expressjs app.
  5. Setup nginx with multi domain websites running on nodejs