eventemitter4
Version:
EventEmitter4 is an alternative to node's built-in EventEmitter class, and to the existing alternatives EventEmitter2 and EventEmitter3
22 lines (16 loc) • 494 B
JavaScript
var EventEmitter=require('../../index.js');
var emitter=new EventEmitter();
//Mum
emitter.on('finished-eating',function(who) {
console.log('clean up the table, '+who+'.');
});
var john=function(who) {
if(who==='John')
console.log('yes, mum');
};
//John
emitter.on('finished-eating',john);
emitter.emit('finished-eating','John');
emitter.removeListener('finished-eating',john);
emitter.emit('finished-eating','John');
emitter.emit('finished-eating','John');