Answers for "how to update all global npm packages"

4

update global package npm

# you can check which packages are outdated by running
npm outdated -g

# then you can update al of them or a specific one
npm update -g # all
npm update -g <package-name> # specific one
Posted by: Guest on March-04-2021
1

npm update all packages to latest

npx -p npm-check-updates ncu -u
Posted by: Guest on August-11-2021

Code answers related to "how to update all global npm packages"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language