How to check NPM modules to update

Posted on December 12, 2021

There is a little command to check if there are modules that require update:

npm outdated

The above command lists all the packages that need both update or upgrade as well.

This way to can selectively run appropriate update commands for each of them.