0.0.1 • Published 10 years ago
ovaldi-event-bus v0.0.1
EventBus
Installation
for Node
npm install ovaldi-event-busfor Bower
bower install event-busfor Require.js
require.config({
paths: {
"eventbus": "path/to/eventbus.js"
}
});
require(["eventbus"], function (EventBus) {
//do something
});Usage
require(["eventbus"], function(EventBus){
var bus = new EventBus();
bus.on("ready", function(data1, data2){
console.log(data1, data2);
});
bus.emit("ready", "lol", "WOW");
bus.off("ready");
});License
MIT