Security News
Supply Chain Attack Detected in Solana's web3.js Library
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
jackrabbit
Advanced tools
Simple AMQP / RabbitMQ job queues for node
var queue = jackrabbit('amqp://localhost');
queue.on('connected', function() {
queue.create('jobs.greet', { prefetch: 5 }, onReady);
function onReady() {
queue.handle('jobs.greet', onJob);
queue.publish('jobs.greet', { name: 'Hunter' });
}
function onJob(job, ack) {
console.log('Hello, ' + job.name);
ack();
}
});
npm install --save jackrabbit
var jackrabbit = require('jackrabbit');
First, create a queue and connect to an amqp server:
var queue = jackrabbit(amqp_url, prefetch)
Create (or assert) a queue.
queue.create(name, options, callback)
Destroy a queue.
queue.destroy(name, callback)
You can destroy queues that exist or don't exist; if you try to destroy a queue that doesn't exist, destroyed = false. If a queue was destroyed, destroyed = true.
Publish a job to a queue.
queue.publish(name, message)
Start handling jobs in a queue.
queue.handle(name, handler)
Jobs must be acknowledged. You can either ack immediately (so all jobs will be run at most once) or you can ack on job completion (so all jobs will run at least once).
Stop handling a queue.
queue.ignore(name)
Purge a queue.
queue.purge(name, callback);
npm test
FAQs
Easy RabbitMQ for node
The npm package jackrabbit receives a total of 1,208 weekly downloads. As such, jackrabbit popularity was classified as popular.
We found that jackrabbit demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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.
Security News
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
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.