Compares node_module versions between two node_modules directories
$ npx diff-modules /path/to/base/node_modules /path/to/comparison/node_modulesdiff-modules allows to filter the output and only display certain mutations through the options --diff-only and --changed-only
This option will only show the packages that are actually different between base and comparison. Packages with the same versions between both will be hidden.
npx diff-modules --diff-only /path/to/base/node_modules /path/to/comparison/node_modulesThis option will only show the packages that are used in both base and comparison, but with different versions.
npx diff-modules --changed-only /path/to/base/node_modules /path/to/comparison/node_modules