
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy 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('/messages', queueService({ id, startId, queue, events, paginate }));
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.
v1.0.0 (2019-06-26)
* This Changelog was automatically generated by github_changelog_generator
FAQs
A Feathers service adapter for Bee-Queue jobs
The npm package feathers-bee-queue receives a total of 0 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
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.