feathers-bee-queue

2.1.1 • Public • Published

feathers-bee-queue

Build Status Code Climate Test Coverage Dependency Status Download Status Sponsor on GitHub

A Feathers service adapter for Bee-Queue jobs.

Installation

npm install --save feathers-bee-queue bee-queue

Documentation

service([options])

Returns a new service instance initialized with the given options.

Important: feathers-bee-queue implements the Feathers Common database adapter API and querying syntax.

const queueService = require('feathers-bee-queue');
app.use('/jobs', queueService({ queue, events, paginate, multi }));

Options:

  • queue - A Bee-Queue queue instance
  • events (optional) - A list of custom service events sent by this service. Must be one or more of the following:
    • succeeded
    • retrying
    • failed
    • progress
  • paginate (optional) - A pagination object containing a default and max page size
  • multi (optional) - Allow create with arrays and remove with id null to change multiple items. Can be true for all methods or an array of allowed methods (e.g. [ 'remove', 'create' ])

Complete Example

Here's an example of a Feathers server that uses feathers-bee-queue.

const feathers = require('@feathersjs/feathers');
const queueService = require('feathers-bee-queue');
const Queue = require('bee-queue');

// Initialize the application
const app = feathers();

// Initialize the plugin
app.use('/my-queue', queueService({
  queue: new Queue('my-queue')
}));

License

Copyright (c) 2018

Licensed under the MIT license.

Package Sidebar

Install

npm i feathers-bee-queue

Weekly Downloads

1

Version

2.1.1

License

MIT

Unpacked Size

14 kB

Total Files

7

Last publish

Collaborators

  • compwright