Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Downgrade node.js - Windows

Tags:

node.js

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?

like image 606
purer Avatar asked Apr 05 '17 11:04

purer


3 Answers

Check out this project:

  • https://github.com/coreybutler/nvm-windows

It's Node version manager for Windows.

Another option:

  • https://www.npmjs.com/package/nvm-win

See also this tutorial:

  • https://medium.com/appseed-io/how-to-run-multiple-versions-of-node-js-with-nvm-for-windows-ffbe5c7a2b47
like image 63
rsp Avatar answered Nov 11 '22 01:11

rsp


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.

like image 35
beck Avatar answered Nov 11 '22 03:11

beck


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]

like image 10
Sriman Pathy Avatar answered Nov 11 '22 03:11

Sriman Pathy