Answers for "how to update the npm version in windows"

1

update npm-windows

powershell Set-ExecutionPolicy RemoteSigned
npm install -g npm-windows-upgrade
npm-windows-upgrade
Posted by: Guest on December-05-2020
3

How can I update npm on Windows

Set-ExecutionPolicy Unrestricted -Scope CurrentUser -Force
npm install -g npm-windows-upgrade
npm-windows-upgrade
Posted by: Guest on June-17-2021
0

how to update npm version in windows

On Win10:
Run PowerShell as Administrator and sequentially enter commands:

Set-ExecutionPolicy Unrestricted -Scope CurrentUser -Force
npm install -g npm-windows-upgrade
npm-windows-upgrade
Posted by: Guest on April-05-2021

Code answers related to "how to update the npm version in windows"

Code answers related to "Javascript"

Browse Popular Code Answers by Language