Client-side Event Bus
A tiny event bus with AMQP and Postal.js-like functionality meant to be used on the client-side.
What is it?
This is a simple event bus that replicates the basics of Postal.js in about 150 lines of code (minified to 1337 bytes)
It doesn't use lists of regex like Postal does but uses a directed graph instead, which is much faster.
It adds a history for automatic metrics collection, which brings the line count to about 150 lines of code (minified to 1258 bytes)
It has no dependencies.
How to use
Use the emit
and on
methods, just like a regular event emitter.
var channel = ; channel; channel;
In imitation of Postal.js, use the returned function to stop the events.
var off = channel;
Also in imitation of Postal.js, use the second parameter to get the topic that triggered the event.
var off = channel;
Remote Procedure Calls (RPC)
To support RPC-like functionality, we allow errors to propagate from subscribers back to publishers.
To disable this, create a 'error' subscriber.
bus; bus;
We also pass back the results of the subscribers, which allows emitters to receive results.
bus; const value = bus; // will be 42
This also allows the emitter to wait until the subscribers are done async work by using Promises.
bus; await Promiseallbus; // will wait for promises to finish
How it works
A Bus builds a directed graph of subscriptions. As event topics are published, the graph discovers all the subscribers to notify and then caches the results for faster message publishing in the future. When a new subscriber is added, the graph is modified and the subscriber cache is reset.
Wildcard subscriptions
Supports same wildcards as Postal.js, such as:
#
Zero or more words using channel;channel;
channel;channel;
*
Single word using channel;channel;
History
We keep a history of the events that have been emitted. They can be queried with the history
method:
var channel = ; channel;channel;channel;channel;channel; // gets the ad slots that were filledvar history = channelhistory'ads.slot.*.filled'; // gets history of components renderingvar history = channelhistory'metrics.component.*.render.*';
The format is an array of arrays. For example:
Only the topic and the timestamp of each event is stored. We don't store the message/payload in the history to prevent potential memory leaks and scoping issues.
These events are stored in a ring buffer, so old events will be dropped from the history once it reaches a certain size. The history size is current set to a maximum of 9999 events.
Note that this feature is designed for metrics, and often the information that people are interested in for metrics can be included as part of the topic. For example, if you have a subscriber of on('components.*.render.start')
, then you can have an infinite number of component ids such as emit('components.abcdef.render.start')
and emit('components.someRandomId.render.start')
without any additional complexity or performance penalty to the event bus. If you're trying to access more information that can't be included as part of the topic, then you should make a subscriber and log that information.
Look at our Examples Page for some common code patterns with event buses.
NOTICE
Yes, this is a continuation of an open-source project that I did for Conde Nast called Quick-bus.
Related Documents
- License - Apache 2.0
- Code of Conduct - Contributor Covenant v1.4
- Contributing Guidelines - Atom and Rails