NVM Installation & usage on Windows


Below are the steps for NVM Installation on Windows:

NVM stands for node version manager, which will help to switch the your node versions for specific use. It also allows the user to work with multiple npm and node versions.

1) Update node version to <NODE_VERSION
        a) Install NVM by downloading from "nvm-setup.zip" : https://github.com/coreybutler/nvm-windows/releases

3) Copy the settings.txt from the "C:\Users\YOUR_USERNAME\AppData\Roaming\nvm" to "C:\Users\ YOUR_USERNAME"

4) Restart your system for the changes to reflect.

5) Open the console and type below command :
         nvm list

6) To install the <NODE_VERSION> version run the below command :
         nvm install <NODE_VERSION>

6.a) To uninstall run the below command :
        nvm uninstall <NODE_VERSION>

7) After the installation is complete it will add the node version in the nvm. To check the same type command :
         nvm list

8) To switch the Node version type the below command:
         nvm use <NODE_VERSION>

 9) To verify the node version switch type the below command:  
         node –v

10) Its will display the node version in use.