hermesjs-amqp
v1.0.2
Published
AMQP adapter for HermesJS
Downloads
456
Readme
hermesjs-amqp
AMQP adapter for HermesJS.
Installing
npm install hermesjs-amqp
Example
const Hermes = require('hermesjs');
const AmqpAdapter = require('hermesjs-amqp');
const app = new Hermes();
app.addAdapter(AmqpAdapter, {
topics: ['trip.requested', 'trip.changed'],
exchange: 'test',
});
See a working example here.
Author
Fran Méndez (fmvilas.com)