A mixin for Moleculer microservices framework that integrates Bee-Queue for task queue functionality. Current stable version is 0.1.10, released as a single version. It allows creating queue worker services and enqueuing jobs with progress reporting and retries. Differentiator: provides a simple mixin pattern to add Bee-Queue support to Moleculer services, but is limited to Bee-Queue (not generic) and uses Moleculer v0.14.x or v0.13.x or v0.12.x with Node >=8.x. The package has no recent updates and is considered stable but not actively maintained.
npm install moleculer-bee-queueNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Shows how to create a queue worker service and enqueue a job with retries using moleculer-bee-queue mixin.
Use an older Moleculer version or avoid using this package with v1+.
Use mixins: [QueueService()] instead of mixins: [QueueService].
Consider migrating to another queue solution like Bull or using direct Bee-Queue integration.
Run 'npm install bee-queue' in your project.
Ensure you use const QueueService = require('moleculer-bee-queue'); and mixins: [QueueService()].Correct mixins usage: mixins: [QueueService()].