An open API service indexing awesome lists of open source software.

https://github.com/onebeyond/systemic-rabbitmq

A systemic rabbimq component
https://github.com/onebeyond/systemic-rabbitmq

hacktoberfest

Last synced: 3 months ago
JSON representation

A systemic rabbimq component

Awesome Lists containing this project

README

        

# systemic-rabbitmq
A [systemic](https://github.com/guidesmiths/systemic) rabbitmq component

It uses [rascal](https://github.com/guidesmiths/rascal) to set up configuration for rabbitmq

## Usage
```js
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
})
```