pub-sub-amqp

1.0.1 • Public • Published

pub-sub-amqp

npm version build status

An easy to use, no frills module allowing inter-process publish/subscribe communication on the top of an AMQP broker like RabbitMQ.

Installation

npm install pub-sub-amqp

Usage

 
var amqpClient = require('pub-sub-amqp');
 
new amqpClient({ uri: 'amqp://localhost' }, function (err, eventManagar) {
 
    eventManagar.on('ready', function (err, event) {
      console.log(event.data); // -> { some: 'data' }
    });
 
    eventManagar.emit('ready', { some: 'data' });
});

API

Test

npm test

License

MIT

Package Sidebar

Install

npm i pub-sub-amqp

Weekly Downloads

1

Version

1.0.1

License

MIT

Last publish

Collaborators

  • tbking