How to tutorials, Linux, Linux.Tips

How to find version all of the packages installed in node_modules directory?

Less than a minute to read

Use the following command in root directory of the node application to find out what packages are installed locally and without their dependencies:
npm list --depth=0

This will output something like this:


Leave a Reply