fudd
v1.0.0
Published
rabbitmq infrastructure setup and teardown via AMQPLIB
Downloads
2
Readme
fudd
simple rabbit mq infrastructure setup/teardown utility
Installation
npm install fudd
Test
npm run test
This will run both unit tests & integration tests. To successfully run integration tests, you must have a rabbitmq instance available & configured. See Configuration for examples
Coverage
npm run cover-html
Usage
var fudd = require('fudd');
fudd.setup(config, function(err){
if(err) throw err;
// do your thing with rabbitmq
});
fudd.teardown(config, function(err){
if(err) throw err;
// all things torn
});
Configuration
Configuration should look like the following:
{
cluster: {
port: 5672,
vhost: '/',
login: 'guest',
heartbeat: 10,
password: 'guest',
host: 'rabbit'
},
exchanges: [
{
name: 'fanout.fx',
type: 'fanout',
options: {}
},
{
name: 'topic.tx',
type: 'topic',
options: {}
}
],
queues: [
{
name: 'queue1',
options: {durable: true}
},
{
name: 'queue2',
options: {durable: false}
}
],
bindings: [
{
bindingType: 'queue',
from: 'fanout.fx',
to: 'queue1',
bindingKeys: ['#']
},
{
bindingType: 'exchange',
from: 'fanout.fx',
to: 'topic.tx',
bindingKeys: ['#'],
options: {}
},
{
bindingType: 'queue',
from: 'topic.tx',
to: 'queue2',
bindingKeys: ['#.topic1', '#.topic2']
}
]
}