/meteor-amqp

AMQP driver for node (port of amqp npm package)

Primary LanguageJavaScript

Meteor-AMQP

A wrapper around node-amqp (npm amqp package) for use with Meteorite on top of Meteor

##Install mrt add amqp

##Usage

AMQP module is exposed this way by Meteor-AMQP:

amqp = require('amqp');

To use it in your Meteor application, you can start right with a line like this:

var connection = amqp.createConnection({ host: 'dev.rabbitmq.com' });

See AMQP documentation for more details.