
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
Task-Kue is a task queue for Node.JS that builds on the Kue priority job queue library and Redis. Task-Kue automatically serializes Task objects and queues them up for a worker process to deserialize and run.
const TaskKue = require('task-kue');
const myTaskQueue = new TaskKue();
module.exports = myTaskQueue;
And register it with the task queue you defined.
const myTaskQueue = require('my-task-queue');
const Task = require('task-kue').Task;
class EmailTask extends Task {
constructor(email, subject, body) {
this.email = email;
this.subject = subject;
this.body = body;
}
run() {
return smtpPromise(this.email,this.subject, this.body);
}
}
myTaskQueue.register(EmailTask);
const myTaskQueue = require('my-task-queue');
var worker = myTaskQueue.buildWorker();
worker.onError(function(e, job) {
util.log(e.stack);
});
worker.process();
new EmailTask("hello@world.com", "Test Email", "Test Body").queue().save();
All of the kue methods (delay, priority) are available before saving the Task.
FAQs
Task based Queue that runs on Kue
The npm package task-kue receives a total of 5 weekly downloads. As such, task-kue popularity was classified as not popular.
We found that task-kue 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
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.