eventee
TypeScript icon, indicating that this package has built-in type declarations

0.0.1 • Public • Published

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

Readme

Keywords

Package Sidebar

Install

npm i eventee

Weekly Downloads

0

Version

0.0.1

License

MIT

Unpacked Size

14.7 kB

Total Files

7

Last publish

Collaborators

  • neriyaco