
Security News
Open Source CAI Framework Handles Pen Testing Tasks up to 3,600× Faster Than Humans
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
@balena/jellyfish-queue
Advanced tools
Queue library for Jellyfish
The Jellyfish system processes incoming action requests and adds them to a queue so that they can be retrieved and executed in order.
This module provides a small set of functions to perform any queue-related operations, and should be utilized by any module requiring interaction with queued objects.
Note that, although jellyfish-queue
is mostly used for enqueuing action requests, it could also be used to support handling other types of objects as well.
Under-the-hood, this module makes use of graphile-worker
, a persistent job queue that supports PostgreSQL and can be used to run jobs "in the background" so that application code is not held up.
jellyfish-core
to allow for the effective management of queued objects of any type.Below is an example how to use this library:
import { Consumer } from '@balena/jellyfish-queue';
import type { ActionRequestContract } from '@balena/jellyfish-types/build/core';
const producer = new Producer(kernel, kernel.sessions.admin);
await producer.initialize(context);
const consumer = new Consumer(kernel, kernel.sessions.admin);
await consumer.initializeWithEventHandler(
logContext,
async (payload: ActionRequestContract): void => {
console.log("Message received: ", payload)
}
)
Visit the website for complete documentation: https://product-os.github.io/jellyfish-queue
Unit tests can be easily run with the command npm test
.
The integration tests require Postgres and Redis instances. The simplest way to run the tests locally is with docker-compose
.
$ npm run test:compose
You can also run tests locally against Postgres and Redis instances running in docker-compose
:
$ npm run compose
$ REDIS_HOST=localhost POSTGRES_HOST=localhost npx jest test/integration/queue/index.spec.ts
You can also access these Postgres and Redis instances:
$ PGPASSWORD=docker psql -hlocalhost -Udocker
$ redis-cli -h localhost
FAQs
Queue library for Jellyfish
The npm package @balena/jellyfish-queue receives a total of 275 weekly downloads. As such, @balena/jellyfish-queue popularity was classified as not popular.
We found that @balena/jellyfish-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.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.