purer
purer

Reputation: 477

Downgrade node.js - Windows

Is it even possible to manage node.js in windows? I can see examples for unix but not for Windows. I found nodist but it looks old. Hints?

Upvotes: 33

Views: 142648

Answers (4)

beck
beck

Reputation: 3027

you can just uninstall the node from control panel and install the required node version from the node official site

https://nodejs.org/download/release/v10.17.0/

https://nodejs.org/en/download/

I dowloaded msi file and it works great.

Upvotes: 17

AnotherOne
AnotherOne

Reputation: 101

Don't forget to restart your pc after using nvm for downgrade.

Upvotes: 1

Sriman Pathy
Sriman Pathy

Reputation: 259

Hi you can downgrade using this command. npm install -g node@version

let's assume you want to downgrade v8.11.3, the command would be npm install -g [email protected]

Upvotes: 14

rsp
rsp

Reputation: 111336

Check out this project:

It's Node version manager for Windows.

Another option:

See also this tutorial:

Upvotes: 37

Related Questions