How to Install Node.js on Windows
-
Download the nvm-setup.exe in the link below
-
Run the nvm-setup.exe by clicking on it and follow the on screen setup instructions
-
Check if you installed NVM sucessfully by using the command
nvm --version
-
To install Node.js with nvm you can now run
nvm install lts
to install the long term support version of node -
Check which versions of node you have then use it as shown with
nvm list
and thennvm use
make sure you are in administrator mode -
Check if node is working by running
node --version