0

I'm on Mac OS. When I run sudo npm update -g, I get a whole ton of output dumped out. Nothing actually says anything like "no updates needed," or "updated X, Y, Z." How do I know if all of the packages I've installed are up to date?

CaptSaltyJack
  • 15,283
  • 17
  • 70
  • 99

1 Answers1

0

I'm sure there's a npm -v command that you can use to check the version against what's on the website.

If you want to see the versions of the packages themselves, that question is answered over here:

npm list for local packages or npm list -g for globally installed packages. Then you can check those versions against what's on the registry.

Find the version of an installed npm package

Community
  • 1
  • 1