Answers for "update global package npm"

3

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

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language