UT Queue is a generic queue management library for Node.js, part of the UT framework (softwaregroup-bg). Current stable version is 6.2.3, released as part of the UT monorepo. It provides message prioritization, overflow handling, rate limiting, timeout handling, and metrics. Unlike simple queue libraries, it offers a contextual queue API tied to connection IDs (conId), allowing per-connection queue management. Primarily used within the UT ecosystem, it's less suited as a standalone general-purpose queue.
npm install ut-queueNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Shows create, get, delete, and count operations using context with conId.
Use named import or destructure require.
Ensure context.conId is a consistent unique identifier (e.g., string).
Update import to named export { queues }.Use `import { queues } from 'ut-queue'`.Run `npm install ut-queue`.
Ensure you use `import { queues } from 'ut-queue'` and then `queues.create()`.No dependency data recorded yet.