1.0.1 • Published 9 years ago

eventbus_js v1.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
9 years ago

eventbus_js

simple event bus for node.js

how to use it.

import EventBus from 'eventbus_js';

var myGlobalEvtBus = new EventBus();

myGlobalEvtBus.subscribe("TODO_ADD_EVENT", function(obj){
    console.log(1, obj.done);
});

myGlobalEvtBus.subscribe("TODO_ADD_EVENT", function(obj){
    console.log(2, obj.title);
});

myGlobalEvtBus.publish("TODO_ADD_EVENT", {done:false, title:"write JS"})
1.0.1

9 years ago

1.0.0

9 years ago