UNPKG

mbus

Version:

If Node's EventEmitter and Eve were to have a child, it might look something like this

13 lines (9 loc) 217 B
var bus = require('..')(); var foo = require('..')('foo', bus); bus.on('foo.bar', function() { console.log('foo.bar triggered'); }); foo.on('bar', function() { console.log('foo triggered bar'); }); foo('bar');