A Feathers service adapter for Bee-Queue jobs, version 2.1.1. It bridges FeathersJS service interface with Bee-Queue, a Redis-backed job queue. The package follows the Feathers Common database adapter API and querying syntax. Key differentiators: leverages Bee-Queue for job processing, supports custom service events (succeeded, retrying, failed, progress), and pagination. Alternative to Kue, Bull, or Agenda integrations for Feathers. Peer dependency on bee-queue@^1.4.0.
npm install feathers-bee-queueNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Shows a complete Feathers server setup using feathers-bee-queue, including Redis connection via Bee-Queue.
Use Feathers v4 (feathers-commons) or later.
Consider migrating to an actively maintained queue adapter like feathers-kue or feathers-bull.
Refer to Bee-Queue documentation for supported operations; for complex queries, use a database adapter.
Check bee-queue compatibility with your Redis version; consider pinning redis version.
Run 'npm install feathers-bee-queue bee-queue'
Use 'const queueService = require('feathers-bee-queue');' or 'import queueService from 'feathers-bee-queue';'Ensure you pass a properly configured Bee Queue instance: const Queue = require('bee-queue'); const queue = new Queue('name', { redis: { host, port } });