1.0.0 • Published 6 years ago

await-events v1.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

await-events

NPM version build status Test coverage

Events that provides method await wait till an event occurred. Inspired by await-event

Install

$ npm install --save await-events

Usage

const AwaitEvents = require('await-events');

// usage 1:
emitter.await = AwaitEvents.await;

// usage 2:
class MyEventEmitter extends AwaitEvents

then:

await emitter.await('event');

if error event occurred, it throws the error. You can do await emitter.await('event', 'exception') to change error event name. You can also use AwaitEvent.await(emitter, 'event') instead of binding a method on emitter