rd-queue-system v0.3.6 is a basic Node.js queue system for managing agent login/logout, enqueuing interactions, and assigning them to available agents. It provides simple queue operations with minimal dependencies. No release cadence documented; appears infrequently updated. Differentiators: lightweight and simple compared to Bull or Bee-Queue.
npm install rd-queue-systemNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Creates a queue system, logs in an agent, enqueues an interaction, assigns it to an agent, and logs out the agent.
Use import statements and set "type": "module" in package.json
Ensure each Agent has a unique id before calling loginAgent
Implement a persistent backend or use a dedicated queue service for production
Check CHANGELOG for assignNextAgent() usage
Use import syntax or set "type": "module" in package.json; alternatively, use dynamic import()
Check queue state before calling assignNext(): verify there are logged-in agents and queued interactions
Check agent login status before calling loginAgent(); use agent.loggedIn property if available
No dependency data recorded yet.