This is a small simple yet effective JavaScript Library that emulates the NodeJs EventEmitter. It's built for projects that require Event-driven programming techniques like simple HTML5 Canvas games etc.
For use on the browser, use simplevent.min.js found in the dist folder.
For use in a NodeJs project, instantiation is not required
npm install simpleventSimplevent is simple just like any other event system and uses two main methods, on() and dispatch();
Simplevent can be added as a module just like any other mordern NodeJs package
When using it on the browser, instantiate Simplevent first.
constSimplevent=newSimplevent();When using node js, just require the module.
constSimplevent=require('simplevent');Simplevent's on() method takes 3 arguments, an EVENT<[String]> and a listening function which can be a callback LISTENER<[Function]> and an optional target argument which describes the context for execution TARGET?<[Object|Function]>
When using a callback function as a listener
Simplevent.on('GET_EVENT',function(){console.log('Registered the damn event!');});When using a normal function as the listener
functionshout(){console.log('HEY YOU');}Simplevent.on('SHOUT',shout);Simplevent.dispatch('GET_EVENT');You can pass unlimited number of arguments to the listening function as shown below
Simplevent.on('EVENT_WITH_ARGS',function(name){console.log(name);});Simplevent.dispatch('EVENT_WITH_ARGS','Mr. Simplevent');Use the off() method.
Simplevent.off('SHOUT',shout);You can clear all events
Simplevent.clear();You can chain the methods instead of writing them seperately
varresult=4;varaddOne=()=>{result+=1;}varmultipyByThree=()=>{result*=3;}vardivideByFour=()=>{result/=4;}Simplevent.on('ADD',addOne).on('MULTIPLY',multipyByThree).on('DIVIDE',divideByFour).dispatch('MULTIPLY');Licensed using the MIT Licence and therefore free for commercial purposes;