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
- Host: GitHub
- URL: https://github.com/onebeyond/systemic-rabbitmq
- Owner: onebeyond
- License: mit
- Created: 2017-05-15T19:47:30.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2023-06-24T11:19:19.000Z (almost 2 years ago)
- Last Synced: 2025-02-25T00:56:01.711Z (4 months ago)
- Topics: hacktoberfest
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/systemic-rabbitmq
- Size: 58.6 KB
- Stars: 2
- Watchers: 13
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# systemic-rabbitmq
A [systemic](https://github.com/guidesmiths/systemic) rabbitmq componentIt 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
})
```