1.0.3 • Published 27 days ago

@kiruse/typed-events v1.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
27 days ago

@kiruse/typed-events

Typed Events are an alternative event system designed for TypeScript. While there's obviously nothing functionally wrong with the standard EventEmitter system, it was built for JavaScript before TypeScript was even conceived. The objective of this library is simply to offer an event system which feels more natural to TypeScript.

Installation

Install via npm:

$ npm install @kiruse/typed-events

Usage

import Event from '@kiruse/typed-events';

// First generic parameter is the `event.args` field, second is the optional `event.result` field.
const event = Event<{ foo: string }, number>();

const unsub = event(e => {
  console.log(e.args);
  e.result ??= 42;
  e.result++;
});
event.once(e => {
  e.result ??= 42;
  e.result /= 2;
});

const e = await event.emit({ foo: 'bar' });
console.log(e.result); // 21.5
unsub();
1.0.3

27 days ago

1.0.2

5 months ago

1.0.1

6 months ago

1.0.0

7 months ago