'How to install older version of node.js on Windows?

I need to install node.js of version 4.0.0 I tried this:

npm install -g [email protected] 

But I got this message: npm is not recognized as an internal or external command, operable program or batch file



Solution 1:[1]

Go here and find the version you want to install and then download the correct msi file and run the installer. You cannot install node by running this command, also the error you receive is stating that npm is not on your path which suggests machine doesn't currently have node installed on it

Solution 2:[2]

Just uninstall whatever node version you have in your system. Then go to this site https://nodejs.org/download/release/ and choose your desired version like for me its like v7.0.0/ and click on that go get .msi file of that. Finally you will get installer in your system, so install it. It will solve all your problems.

Solution 3:[3]

For windows, best is: nvm-windows

1)install the .exe

2)restart (otherwise, nvm will not be undefined)

3)run CMD as admin,

4)nvm use 5.6.0

Note: You MUST run as Admin to switch node version every time.

Solution 4:[4]

run:

npm install -g [email protected]

- or whatever version you want after the @ symbol (This works as of 2019)

Solution 5:[5]

You can use Nodist for this purpose. Download it from here.

Usage:

nodist                         List all installed node versions.
nodist list
nodist ls

nodist <version>               Use the specified node version globally (downloads the executable, if necessary).
nodist latest                  Use the latest available node version globally (downloads the executable, if necessary).

nodist add <version>           Download the specified node version.

More Nodist commands here

Solution 6:[6]

At first, you will need to uninstall nodejs from the system preferably from Add or Remove Programs or Control Panel. Then, go to nodejs official site, scroll down to find previous releases like in image

enter image description here

click on previous releases and type in the version you are searching for in the search box

enter image description here

Go to downloads and finally select a msi file from the list

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1
Solution 2 Alok Ranjan
Solution 3
Solution 4 Dev Rupinder
Solution 5 Darush
Solution 6