systemic-rabbitmq
v1.0.1
Published
A systemic rabbitmq component
Downloads
17
Readme
systemic-rabbitmq
A systemic rabbitmq component
It uses rascal to set up configuration for rabbitmq
Usage
const System = require('systemic')
const rabbitmq = require('systemic-rabbitmq')
new System({ name: 'rabbit' })
.add('logger', console)
.add('rabbitmq', rabbitmq()).dependsOn('config', 'logger')
.start((err, components) => {
// Do stuff with components.rabbitmq
})