npm update windows code example
Example 1: update npm for laptop
npm install -g npm@latest
Example 2: update npm-windows
powershell Set-ExecutionPolicy RemoteSigned
npm install -g npm-windows-upgrade
npm-windows-upgrade
Example 3: 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
Example 4: npm latest version windows
npm-windows-upgrade --npm-path "C:\nodejs"