
Security News
Happy Birthday, Shai-Hulud
It has been one year since Shai-Hulud made its first appearance on npm.
@tiledesk/tiledesk-multi-worker
Advanced tools
Jobs-Worker-Queued is a job runner for Node.js. It allows you to define and schedule jobs (arbitrary functions) for execution in a Nodejs worker node using the Rabbit MQ server.
Jobs-Worker-Queued is a job runner for Node.js. It allows you to define and schedule jobs (arbitrary functions) for execution in a Nodejs worker node using the Rabbit MQ server.
Run the follow command:
npm install --save jobs-worker-queued
var JobManager = require("jobs-worker-queued");
var jobManager = new JobManager("amqp://YOUR_RABBIT_URI");
jobManager.publish(
{name: "job1", address: {city: "NY"}}
);
var JobManager = require("jobs-worker-queued");
var jobManager = new JobManager("amqp://YOUR_RABBIT_URI");
jobManager.run(function(data) {
console.log("run job here with payload", data)
});
To properly exploit multi-worker, you need to instantiate JobManager using different queueName and topic for each different task.
The exchange can be unique.
FAQs
Jobs-Worker-Queued is a job runner for Node.js. It allows you to define and schedule jobs (arbitrary functions) for execution in a Nodejs worker node using the Rabbit MQ server.
The npm package @tiledesk/tiledesk-multi-worker receives a total of 434 weekly downloads. As such, @tiledesk/tiledesk-multi-worker popularity was classified as not popular.
We found that @tiledesk/tiledesk-multi-worker demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 6 open source maintainers collaborating on the project.

Security News
It has been one year since Shai-Hulud made its first appearance on npm.

Research
/Security News
Operators behind PolinRider used a compromised GitHub account to plant malware in four development versions of a Packagist package with 700,000+ downloads.

Security News
GitHub Actions now supports cache-mode, a least-privilege control on the Actions cache aimed at the cache poisoning technique behind recent compromises.