pigeon-post

0.0.8 • Public • Published

pigeon

Configuration based RabbitMQ interface based on node-amqp

Installation

npm install pigeon-post

Synopsis

An example of connecting to a server, publishing an event and receiving it

Configuration file

publishers:
  -
    name: greeter
    options:
      type: fanout
    publishes:
      - greeting
subscribers
  -
    name: receptionist
    bindings:
      greeter:
        - greeting

Publisher

var Pigeon = require('pigeon').getInstance();
 
Pigeon
    .connect('config.yml')
    .publish('greeting', {value:'Hello World'})

Subscriber

var Pigeon = require('pigeon').getInstance();
 
Pigeon
    .connect('config.yml')
    .subscribe('receptionist', function(msg) {
        console.log(msg);
    });

Dependents (0)

Package Sidebar

Install

npm i pigeon-post

Weekly Downloads

0

Version

0.0.8

License

none

Last publish

Collaborators

  • bzwheeler