emitter-pubsub-broker
![JavaScript Style Guide](https://img.shields.io/badge/code%20style-standard-brightgreen.svg)
An utility for connecting EventEmitters via a pubsub. Includes Redis
and in-memory backends, and a support of other systems can be added by
implementing a very simple Connector wrapper.
Table of Contents
Installation
$ npm i emitter-pubsub-broker
Usage
const EmitterPubsubBroker = require('emitter-pubsub-broker')
const connect = 'redis://localhost:6379'
let broker = new EmitterPubsubBroker(connect)
let client = new EventEmitter()
client.on('myEvent', (...args) => { })
broker.subscribe(client, 'my-channel')
.then(() => broker.publish('my-channel', 'myEvent', ...args))
API
API
documentation is available online.
Contribute
If you encounter a bug in this package, please submit a bug report to
github repo
issues.
PRs are also accepted.
License
MIT