1.0.1 • Published 7 years ago

systemic-rabbitmq v1.0.1

Weekly downloads
3
License
ISC
Repository
github
Last release
7 years ago

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
    })