mqstack

0.0.3 • Public • Published

MQStack

MQStack is a messsage queuing framework, written in Node.js.

Installation

Installing MQStack via NPM:

npm install mqstack

Usage

Here is an example to use MQStack to publish message to AMQP server(RabbitMQ):

var MQStack = require('../');
 
var mqStack = new MQStack();
 
mqStack.on('ready', function() {
    // Using "output" handler to forward message to specific channel "test"
    mqStack.publish('output', 'test', 'Hello');
});

License

MIT

Readme

Keywords

Package Sidebar

Install

npm i mqstack

Weekly Downloads

1

Version

0.0.3

License

MIT

Last publish

Collaborators

  • fredchien