
Security News
Vite Releases Technical Preview of Rolldown-Vite, a Rust-Based Bundler
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
Automated npm auditing
The auditmated
binary will run npm audit fix
in the current repo. If package.json
and package-lock.json
have been updated auditmated
will commit those changes
with a commit message of <branch-name> npm audit fix
. This will fix any problems identified by npm audit
that can be fixed by patch or minor version bumps.
auditmated
only supports bash.
This will run auditing as a pre-push hook using husky:
{
"name": "audit-test",
"version": "1.0.0",
"main": "index.js",
"husky": {
"hooks": {
"pre-push": "auditmated"
}
},
"devDependencies": {
"auditmated": "0.1.0",
"husky": "^1.0.0"
}
}
If you are using Husky v0, define as a prepush
script.
{
"name": "audit-test",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"prepush": "auditmated"
},
"devDependencies": {
"auditmated": "0.1.0",
"husky": "^0.14.3"
}
}
auditmated
will not run for master
, main
, or develop
branches. If you are using husky
, you can use the --no-verify
command line option to skip running auditing on any other branch.
FAQs
Automated npm auditing for bash
The npm package auditmated receives a total of 104 weekly downloads. As such, auditmated popularity was classified as not popular.
We found that auditmated demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.
Security News
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
Research
Security News
A malicious npm typosquat uses remote commands to silently delete entire project directories after a single mistyped install.
Research
Security News
Malicious PyPI package semantic-types steals Solana private keys via transitive dependency installs using monkey patching and blockchain exfiltration.