EN
Node.js - install selected node version under Windows
5 points
In this short article, we would like to show how to install desired version of the Node.js and npm under Windows.
Avaialbe releases: https://github.com/coreybutler/nvm-windows/releases
Direct link: https://github.com/coreybutler/nvm-windows/releases/download/1.1.10/nvm-setup.exe
Hint: re-run command line if
nvm
command is not available afternvm-setup.exe
installation.
Type in the command line:
xxxxxxxxxx
1
nvm list available
Example output:
xxxxxxxxxx
1
| CURRENT | LTS | OLD STABLE | OLD UNSTABLE |
2
|--------------|--------------|--------------|--------------|
3
| 17.8.0 | 16.14.2 | 0.12.18 | 0.11.16 |
4
| 17.7.2 | 16.14.1 | 0.12.17 | 0.11.15 |
5
| 17.7.1 | 16.14.0 | 0.12.16 | 0.11.14 |
6
| 17.7.0 | 16.13.2 | 0.12.15 | 0.11.13 |
7
| 17.6.0 | 16.13.1 | 0.12.14 | 0.11.12 |
8
| 17.5.0 | 16.13.0 | 0.12.13 | 0.11.11 |
9
| 17.4.0 | 14.19.1 | 0.12.12 | 0.11.10 |
10
| 17.3.1 | 14.19.0 | 0.12.11 | 0.11.9 |
11
| 17.3.0 | 14.18.3 | 0.12.10 | 0.11.8 |
12
| 17.2.0 | 14.18.2 | 0.12.9 | 0.11.7 |
13
| 17.1.0 | 14.18.1 | 0.12.8 | 0.11.6 |
14
| 17.0.1 | 14.18.0 | 0.12.7 | 0.11.5 |
15
| 17.0.0 | 14.17.6 | 0.12.6 | 0.11.4 |
16
| 16.12.0 | 14.17.5 | 0.12.5 | 0.11.3 |
17
| 16.11.1 | 14.17.4 | 0.12.4 | 0.11.2 |
18
| 16.11.0 | 14.17.3 | 0.12.3 | 0.11.1 |
19
| 16.10.0 | 14.17.2 | 0.12.2 | 0.11.0 |
20
| 16.9.1 | 14.17.1 | 0.12.1 | 0.9.12 |
21
| 16.9.0 | 14.17.0 | 0.12.0 | 0.9.11 |
22
| 16.8.0 | 14.16.1 | 0.10.48 | 0.9.10 |
Note: to list installed versions use:
nvm list installed
(currently used version will be marked with*
character).
Open command line as administrator and run the following commands:
xxxxxxxxxx
1
nvm install v17.8.0
2
nvm use v17.8.0
3
4
node -v
Example output:
xxxxxxxxxx
1
v17.8.0