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?

1

4 Answers

Check out this project:

It's Node version manager for Windows.

Another option:

See also this tutorial:

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

I dowloaded msi file and it works great.

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 benpm install -g node@8.11.3

2

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

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like