-2

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

Gopal Meena
  • 107
  • 1
  • 2
  • 8

2 Answers2

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