Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
feathers-bee-queue
Advanced tools
A Feathers service adapter for Bee-Queue jobs.
npm install --save feathers-bee-queue bee-queue
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 instanceevents
(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 sizemulti
(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' ]
)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')
}));
Copyright (c) 2018
Licensed under the MIT license.
v2.0.0 (2019-08-31)
FAQs
A Feathers service adapter for Bee-Queue jobs
The npm package feathers-bee-queue receives a total of 6 weekly downloads. As such, feathers-bee-queue popularity was classified as not popular.
We found that feathers-bee-queue demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.