Posts

Showing posts with the label NVM

Setup Multiple Node.JS using NVM and Issue

Image
NVM is a Node Version Manager for Windows. It is used to set up multiple installations of Node.js  on the window machine. Before getting started with NVM you need download NVM for Windows from here . Open Command prompt or Powershell in Administrator mode and run below command from development or project folder: $ nvm install $ nvm use Once you run above command you may get an error a message like " Invalid version " or it will not work as you are expecting. Then add  $(type .nvmrc)  at the end of the above command for example: $ nvm install $(type .nvmc) Now It will work as you expecting or again you will get an error message as below: