Skip to content

tarunbatra/pub-sub-amqp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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