Skip to main content

Updating node standard version

Image 10-24-19 at 1.36 PM.jpg

If you can't commit your code and get a message to update your Node version, follow the steps below:

  1. nvm list - to see the version you have and the available version you can install
  2. nvm install 8.12.0 - to install the 8.12.0 version
  3. nvm alias default 8.12.0 - to set 8.12.0 as the Node default
  4. npm install - to install the version

You are now updated!