bajo-queue is a job queue plugin for the Bajo Framework, currently at version 2.0.1 with no defined release cadence. It integrates with the Bajo framework to provide queue processing capabilities, likely using an underlying queue system. Key differentiator: it is purpose-built for Bajo, with tight integration and configuration via Bajo's plugin system. Alternative would be generic queue libraries like Bull or Kue, which lack Bajo integration.
npm install bajo-queueNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Shows how to import the default plugin, register it with Bajo, and use the queue to add and process jobs.
Ensure Bajo is installed and the plugin is listed in .plugins configuration file.
Initialize bajo-queue by adding it to a Bajo app instance using app.addPlugin(bajoQueuePlugin).
Update imports to ESM and follow the plugin pattern with Bajo v2+.
Run `npm install bajo-queue` in your project root.
Ensure Bajo is installed (`npm install bajo`) and instantiated: `const app = new Bajo()`.
No dependency data recorded yet.