
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Vendorman is a small helper. It helps you to install dependencies for small websites and assists in providing your build tools with all paths. Install via npm install vendorman -g
vendorman add <packages...>
Add a dependency - uses npm install
vendorman remove <packages...>
Remove a dependency - uses npm remove
vendorman list
List dependenciesvendorman file <package> <files...>
Adds or deletes (-d) the given filepaths from the given packageSmall websites often need standard libraries like jQuery. Integrating these in your build task can be tedious. Vendorman provies an easy to use command line interface to integrate these dependencies in you build task.
Vendorman by default returns the main package file. For basic frontend-vendors this is usally the right one. Filepaths can be added or removed with the vendorman file <package> <files...>
command.
const vendorman = require('vendorman');
// Returns an array with all vendor files
vendorman.all();
// Returns the vendor files of the given package
vendorman.package('jquery');
const gulp = require('gulp');
const vendorman = require('vendorman');
gulp.task('vendor', function() {
return gulp.src(vendorman.all())
.pipe(gulp.dest('./vendors/'));
});
FAQs
Helper for common vendors in basic websites
The npm package vendorman receives a total of 9 weekly downloads. As such, vendorman popularity was classified as not popular.
We found that vendorman 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.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.