How to check NPM modules to update
•
1 min read
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.