
Product
Rust Support in Socket Is Now Generally Available
Socket’s Rust and Cargo support is now generally available, providing dependency analysis and supply chain visibility for Rust projects.
grunt-dependency-check
Advanced tools
Checks which modules you have used in your code and then makes sure they are listed as dependencies in your package.json and vice-versa
Checks which modules you have used in your code and then makes sure they are listed as dependencies in your package.json and vice-versa, using
dependency-check
Issues with the output should be reported on the dependency-check issue tracker.
$ npm install --save-dev grunt-dependency-check
require('load-grunt-tasks')(grunt); // npm install --save-dev load-grunt-tasks
grunt.initConfig({
dependencyCheck: {
files: ['**/*.js'], // same as --entry
options: {
package: '.', // module folder path
missing: true, // same as --missing
unused: true, // same as --unused
excludeUnusedDev: false, // same as --no-dev
ignoreUnused: [], // same as --ignore-module
noDefaultEntries: true // same as --no-default-entries
}
}
});
grunt.registerTask('default', ['dependencyCheck']);
See the dependency-check docs.
In addition you can supply a package option.
MIT © Sindre Sorhus
FAQs
Checks which modules you have used in your code and then makes sure they are listed as dependencies in your package.json and vice-versa
We found that grunt-dependency-check demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Socket’s Rust and Cargo support is now generally available, providing dependency analysis and supply chain visibility for Rust projects.

Security News
Chrome 144 introduces the Temporal API, a modern approach to date and time handling designed to fix long-standing issues with JavaScript’s Date object.

Research
Five coordinated Chrome extensions enable session hijacking and block security controls across enterprise HR and ERP platforms.