ts-ev is a typed event emitter that provides removal protection, filtering, and inheritance.
Unlike other typed event emitters, ts-ev includes a mechanism for arbitrarily deep extensions of its Emitter class:
- Each derived class may
- extend their parent functionality,
- extend their parent events,
- and define additional events.
ts-ev has zero imports, so it should be usable in any TS environment.
CHANGELOG
Features
Execution Order Guarantees:
- Ensures that
.emit()
operates on the currently registered listeners.
- In other words, listener changes during the emit loop do not effect the loop.
- Listeners are executed in their order of addition.
- Listeners may be prepended.
- Matches the behavior of
EventEmitter
from "events".
Protection:
.off()
will not remove the listener unless it is explicitly specified.
Filtering:
- Supply a type assertion to narrow down the type expected by a listener.
- Listeners are not called unless their associated filter passes.
- Filters must be type predicates and must specify both the input and output types.
- e.g.:
(args: [number, string]): args is [1, "foo"] => args[0] === 1 && args[1] === "foo"
- Filtering changes the listener parameters type.
Template Parameters
export class Emitter<
BaseEvents extends { [event: string]: (...args: any[]) => any },
DerivedEvents extends { [event: string]: (...args: any[]) => any } = {},
> { ... }
Two template parameters are provided, one for base events and another for derived events. This is to allow for extensions of an emitter-derived class that define additional events.
For example:
class Foo<DerivedEvents extends Emitter.Events.Except<"foo">>
extends Emitter<{ foo: (data: "bar") => any }, DerivedEvents> {
constructor() {
this.emit("foo", "bar");
}
}
class Bar extends Foo<{ bar: (data: "baz") => any }> {
constructor() {
this.emit("foo", "bar");
this.emit("bar", "baz");
}
}
In this example, the Emitter
BaseEvents
defined by Foo
are statically known to it and therefore can be used within the class and its descendants. It's DerivedEvents
are not statically known by it, so they may only be used by the derived class that defines them (Bar
).
public [on|prependOn|once|prependOnce]<
Ev extends keyof BaseEvents | keyof DerivedEvents,
Data extends EvData<BaseEvents, DerivedEvents, Ev> = EvData<BaseEvents, DerivedEvents, Ev>
> { ... }
Ev:
- Represents the event passed to the function.
Data:
- Represents the data received by an event listener (parameters array).
- Set by default to the corresponding
BaseEvents
or DerivedEvents
value.
- Modified when a filter is provided.
Usage
import { Emitter } from "ts-ev";
const emitter = new Emitter<{
foo: (bar: "baz") => any
}>();
emitter.emit("foo", "baz");
class Foo<
DerivedEvents extends Emitter.Events.Except<"baseEv1" | "baseEv2">
> extends Emitter<
{
baseEv1: (requires: number, these: string, args: boolean) => any;
baseEv2: () => any;
},
DerivedEvents
> {
constructor() {
super();
setTimeout(() => this.emit("baseEv1", 1, "foo", true), 100);
setTimeout(() => this.emit("baseEv2"), 1000);
}
}
const foo = new Foo();
await foo.once("baseEv2");
const l = () => console.log("received");
foo.on("baseEv2", l);
foo.off("baseEv2", l);
foo.on("baseEv2", l, { protect: true });
foo.off("baseEv2");
foo.off();
foo.off("baseEv2", l);
foo.on(
"baseEv1",
(a, b, c) => console.log(a, b, c),
{
filter: (data: [number, string, boolean]): data is [1, "foo", boolean] =>
data[0] === 1 && data[1] === "foo",
}
);
const [two, baz] = await foo.once("baseEv1", {
filter: (data: [number, string, boolean]): data is [2, "bar", boolean] =>
data[0] === 2 && data[1] === "baz",
});
class Bar extends Foo<{
derivedEv: (add: "more", events: "to", the: "emitter") => any;
}> {
constructor() {
super();
setTimeout(() => this.emit("baseEv1", 1, "foo", true), 100);
setTimeout(() => this.emit("derivedEv", "more", "to", "emitter"), 200);
}
}
const bar = new Bar();
bar.on("baseEv2", () => console.log("receives base class events!"));
bar.on("derivedEv", () => console.log("receives derived class events!"));
Testing
npm test
Uses @jpcx/testts for internal unit testing.
Additionally, this project is relied on heavily by my node-kraken-api package, so it has received plenty of integration testing.
Development
Contribution is welcome! Please raise an issue or make a pull request.
Author
Justin Collier - jpcx
License
This project is licensed under the MIT License - see the LICENSE file for details