0.0.1 • Published 12 months ago

eventee v0.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
12 months ago

Eventee

Eventee is an extended version of the EventEmitter class from Node.js. It allows you to stop the propagation of events.

Installation

npm install eventee

Usage

The usage is the same as the EventEmitter class from Node.js. The only difference is that you can stop the propagation of events by returning false in the event handler.

const { EventEmitter } = require('eventee');

const emitter = new EventEmitter();

emitter.on('event', () => {
    console.log('Event 1');
});

emitter.on('event', () => {
    console.log('Event 2');
    return false;
});

emitter.on('event', () => {
    // This event will not be called
    console.log('Event 3');
});

emitter.emit('event');

Future plans

  • Add support for event priorities
0.0.1

12 months ago