I am working on a finance project but now we start a new one here node version issue is getting, how to prevent this issue
Asked
Active
Viewed 4,048 times
-2
-
4[Download latest node.js version](https://nodejs.org/) | Update npm by running `npm install -g npm` – frobinsonj Jan 04 '19 at 11:13
2 Answers
3
You need to install new version on your machine go to this website and install whatever version you needed.
You can refer this as well Update Npm on windows
Run PowerShell as Administrator
Set-ExecutionPolicy Unrestricted -Scope CurrentUser -Force
npm install -g npm-windows-upgrade
npm-windows-upgrade
Note: Do not run npm i -g npm
. Instead use npm-windows-upgrade
to update npm going forward. Also if you run the NodeJS installer, it will replace the node version.

Harsh Patel
- 6,334
- 10
- 40
- 73
0
you should try
https://github.com/coreybutler/nvm-windows
As you can manage node versions seamlessly with nvm

Ashok Mandal
- 278
- 2
- 13