Super lightweight module to support EventEmitter-based Pub/Sub communication in the browser and on the server.
npm install raptor-pubsub --save
var raptorPubsub = require('raptor-pubsub');
// Subscribe to an event
raptorPubsub.on('someEvent', function(arg) {
// Do something...
});
// Publish an event
raptorPubsub.emit('someEvent', 'Hello World');
// Get a reference to named pub/sub channel
var channel = require('raptor-pubsub').channel('my-channel');
// Subscribe to an event
channel.on('someEvent', function(arg) {
// Do something...
});
// Publish an event
channel.emit('someEvent', 'Hello World');
// Removing a channel
require('raptor-pubsub').removeChannel('my-channel');
The global pub/sub channel and named channels are simply EventEmitter instances.
- Patrick Steele-Idem (Twitter: @psteeleidem)
Pull Requests welcome. Please submit Github issues for any feature enhancements, bugs or documentation problems.
Apache License v2.0