strict-event-emitter-types
TypeScript icon, indicating that this package has built-in type declarations

2.0.0 • Public • Published

Typed Event Emitter

NOTE: REQUIRES TYPESCRIPT 3.0

A TypeScript library for strongly typed event emitters in 0 kB. Declare events using a simple interface mapping event names to their payloads to get stricter versions of emit, on, and other common EventEmitter APIs. Works with any kind of EventEmitter.

Installation

npm i strict-event-emitter-types

Example

import StrictEventEmitter from 'strict-event-emitter-types';
 
// define your events
interface Events {
  request: (request: Request, response: Response) => void;
  done: void;
}
 
// grab an event emitter
import { EventEmitter } from 'events';
 
// Create strict event emitter types
let ee: StrictEventEmitter<EventEmitter, Events> = new EventEmitter;
 
// now enjoy your strongly typed EventEmitter API!🎉
 
ee.on('request', (r, resp) => ... );
// r and resp are contextually typed to Request and Response
 
ee.on('somethingElse');
// Error: unknown event
 
ee.on('done', x => x);
// Error: The 'done' event does not have a payload
 
ee.emit('request', new Request());
// Error: missing event payload (the response)
 
ee.emit('request', new Request(), false);
// Error: incorrect payload type

Usage

Event Records

Event records are interfaces or object types that map event names to the event's payload types. In the following example, three events are declared:

interface Events {
  req: (request: Request, response: Response) => void;
  done: void;
  conn: Connection;
}

Each event shows one of three ways to type the event payloads:

  1. Function type: Parameters are the event payload. The return type is ignored.
  2. void: A shortcut for an event with no payload, i.e. () => void
  3. Anything else: A shortcut for an event with one payload, for example (p: number) => void can be written as just number.

StrictEventEmitter<TEmitterType, TEventRecord, TEmitRecord>

The default export. A generic type that takes three type parameters:

  1. TEmitterType: Your EventEmitter type (e.g. node's EventEmitter or socket.io socket)
  2. TEventRecord: A type mapping event names to event payloads
  3. TEmitRecord: Optionally, a similar type mapping things you can emit.

The third parameter is handy when typing web sockets where client and server can listen to and emit different events. For example, if you are using socket.io:

// create types representing the server side and client
// side sockets
export type ServerSocket = 
  StrictEventEmitter<SocketIO.Socket, EventsFromServer, EventsFromClient>;
export type ClientSocket = 
  StrictEventEmitter<SocketIOClient.Socket, EventsFromClient, EventsFromServer>;
 
// elsewhere on server
let serverSocket: ServerSocket = new SocketIO.Socket();
serverSocket.on(/* only events that are sent from the client are allowed */, ...)
serverSocket.emit(/* only events that are emitted from the server are allowed */, ...)
 
// elsewhere on client
let clientSocket: ClientSocket = new SocketIOClient.Socket();
clientSocket.on(/* only events that are sent from the server are allowed */, ...)
clientSocket.emit(/* only events that are emitted from the client are allowed */, ...)
Usage with Subclasses

To subclass an EventEmitter you need to cast the base EventEmitter to the strict EventEmitter before extending:

type MyEmitter = StrictEventEmitter<EventEmitter, Events>;
 
class MyEventEmitter extends (EventEmitter as { new(): MyEmitter }) {
  doEmit() {
    this.emit(...); // strict
  }
}

StrictBroadcast<TStrictEventEmitter>

A type for a function which takes (and strictly checks) an emit event and a payload. TStrictEventEmitter is the event emitter type instantiated from StrictEventEmitter.

Useful for broadcast abstractions. It is not possible to contextually type assigments to this type, so your declarations will look something like this:

import { StrictBroadcast } from 'strict-event-emitter-types';
 
const broadcast: StrictBroadcast<ServerSocket> = function(
  event: string,
  payload?: any
) {
  // ...
};

Note that the loose types for event and payload only apply inside the broadcast function (consumers will see a much stricter signature). Declaring more precise parameter types or narrowing using type guards would allow strongly-typed dispatching to emitters.

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 2.0.0
    118,626
    • latest

Version History

Package Sidebar

Install

npm i strict-event-emitter-types

Weekly Downloads

120,022

Version

2.0.0

License

ISC

Unpacked Size

10.3 kB

Total Files

8

Last publish

Collaborators

  • bterlson