
Security News
MCP Community Begins Work on Official MCP Metaregistry
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
@balena/jellyfish-queue
Advanced tools
Notice: This utility has been discontinued. The functionality provided by this module has been merged into jellyfish-worker
.
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 560 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
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Research
Security News
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.
Research
Security News
Malicious npm packages posing as developer tools target macOS Cursor IDE users, stealing credentials and modifying files to gain persistent backdoor access.