@winnerjs.org/queue
v0.1.0
Published
WinnerJS in-memory job queue (Phase 2)
Readme
@winnerjs.org/queue
In-memory job queue with async processing (Phase 2 stub; Redis/BullMQ planned).
import { JobQueue } from "@winnerjs.org/queue";
const queue = new JobQueue();
queue.push("send-email", { to: "[email protected]" });
queue.process(async (job) => console.log(job.name));