Find outdated npm global packages
Nov 5 · 1 min read
When I try to use npm to do something and I find warning messages that tell me you need to upgrade my npm package. The problem is which one I need to upgrade. Here is the way to find them.
npm list --depth=0 -gAfter run this command in Terminal, it will show you outdated packages globally.

If you want to update just type this on Terminal
npm update <packagename> -gDone !!!
