Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Simple and powerful task queue for Node.js on top of Beanstalkd
import Burstable from 'burstable';
const burstable = new Burstable(
host, // beanstalkd host
port, // beanstalkd port
{
// options
}
);
burstable.spawn(tube, {
delay: 0,
priority: 1000,
timeout: 10 * 60 * 1000,
payload: {
// job payload/values
},
wait: Job | [Job...] | [{tube: String, id: Number}] // Wait for jobs before handling this job - Logic on consumer side
});
burstable.handle(tube, function (payload) {
// Complete job
return Promise.resolve();
// Job error
return Promise.reject();
// Spawn child job and wait for completion before completing this job
return this.child(anotherTube);
}, {
maxTries: 3, // Total amount of tries including the first one
backoff: {
initial: 60 * 1000,
exponential: 1.5 // multiple backup by N each try
}
});
burstable.start(); // Enable handlers and start processing jobs, make sure handlers are setup before calling start
Use DEBUG=burstable*
to enable verbose debugging.
FAQs
Simple and powerful task queue for Node.js on top of Beanstalkd
The npm package burstable receives a total of 1 weekly downloads. As such, burstable popularity was classified as not popular.
We found that burstable 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
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.