An abstract reactive implementation of a Job Queue designed for developers to extend and build custom job queue systems. Version 0.0.1 targets Node.js >=0.10.0. This package is not a standalone solution but a base abstraction for creating job queue implementations. Minimal documentation and early development stage limit usability; alternatives like Kue or Bull offer mature features. Low maintenance and community interest suggests limited production readiness.
npm install qdNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Shows how to extend the abstract Qd class with custom add and process methods.
Override both methods in your subclass.
Upgrade Node.js to >=0.10.0.
Read source code on GitHub for implementation details.
Migrate to a maintained job queue library.
Use ambient declarations or switch to a typed library.
Implement add() method in your subclass.
Run 'npm install qd'
Use 'const Qd = require('qd'); class MyQueue extends Qd {}'Implement process() in your subclass.
No dependency data recorded yet.