A lightweight message queue library for Node.js providing AMPQ-style functionality. Version 2019.5.11 is currently active with infrequent releases. It offers basic publish/subscribe and work queue patterns but lacks modern AMQP protocol compliance. For full AMQP support, use amqplib.
npm install ampqNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Shows basic connection, queue assertion, and message publishing in an async/await pattern.
Use exact version in package.json, e.g., "2019.5.11".
Implement manual reconnection with backoff or use amqplib.
Use channel.on('close', () => { ... }) instead.Run 'npm install ampq' and ensure the name is correct (ampq, not amqp).
Use 'import mq from 'ampq'' or 'const mq = require('ampq')'.Start RabbitMQ: 'rabbitmq-server' or 'docker run -d --hostname rmq -p 5672:5672 rabbitmq'.
No dependency data recorded yet.