npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

emitting

v1.1.0

Published

EventEmitter designed for TypeScript and Promises

Downloads

10

Readme

Emitting

Build Status Codecov Codacy dependencies Status npm bundle size

[Github | NPM | Typedoc]

Emitting is a simple event emitter designed for TypeScript and Promises. There are some differences from other emitters:

  • Exactly typing for event payloads new EventEmitter<Events>()
  • Waiting for event with .take("event"): Promise<Payload> and same
  • Do not throw an error when you emit an error event and nobody is listening
  • Functional — methods don't rely on this
  • Small size. No dependencies. Size Limit controls the size.

Table of contents

Installation

# NPM
npm instal --save emitting

# Yarn
yarn add emitting

Polyfills

Module built to ECMAScript 5.

Be sure to add polyfills if neccessary for:

  • Promise
  • Set
  • Map

Usage

JavaScript

After installation the only thing you need to do is require the module:

const { EventEmitter } = require("emitting")

const emitter = new EventEmitter()

TypeScript

After installation you need to import module and define events:

import { EventEmitter } from "emitting"

type Events = {
  hello: { name: string }
  bye: void
}

const emitter = new EventEmitter<Events>()
// Now you have typed event emitter 🚀 yay!

API

Documentation for API generated by TypeDOC — emitting.sova.dev

Constructor

Receives type parameter Events that should be object type or interface, where key is an event name and value is an payload as a single parameter type.

type Events = {
  eventName: PayloadType
}

Pass Events to constructor generic parameter:

import { EventEmitter } from "emitting"

type Events = {
  hello: { name: string }
  bye: void
}

const emitter = new EventEmitter<Events>()

Now you can emit events and subscribe to.

.on(eventName, handler) — add event listener

.on() receives an event name and an event handler. Event handler should be a function that receives a payload. .on() returns unsubscribe function to remove created subscribtion.

function helloHandler(payload: { name: string }) {
  console.log(payload.name)
}

function byeHandler() {
  console.log("Goodbye!")
}

emitter.on("hello", helloHandler)
emitter.on("bye", byeHandler)

.once(eventName, handler) — listen event once

Subscribes to event, and when it received immediately unsubscribe. Subscribtion can be canceled at any time.

const cancel = emitter.on("hello", helloHandler)

cancel() // subscription cancelled

.emit(eventName, payload) — send event to listeners

Executes all listeners with passed payload. Accepts only one payload parameter. Use object type or tuple type to pass multiple payloads. If no listeners nothing happens.

emitter.emit("hello", { name: "world" })

.emitCallback(eventName) — create emitter function

Create function that emit event when called. Payload should be passed to returned callback.

const hello = emitter.emitCallback("hello")

hello({ name: "world" }) // emitted "hello" event

.take(event): Promise — wait for event

Creates promise that resolves when specified event is received. Returns Promise resolved with payload of the passed event. Listeners removed after event is received.

type Events = {
  example: number
}
const emitter = new EventEmitter<Events>()

emitter.take("example").then((payload) => {
  console.log("Received", payload)
})

emitter.emit("example", 10) // Received 10

With async/await:

const payload: number = await emitter.take("example")

.takeTimeout(event, ms): Promise — wait for event or reject

Creates a promise that resolves when specified event is received. Promise resolves with payload of the received event. Promise is rejected when timeout is reached. Listeners removed after timeout is reached, and event is received.

try {
  const { name } = await emitter.takeTimeout("hello", 300)
} catch (_) {
  console.info("Event `hello` is not emitted in 300 ms after subscribing to")
}

.takeEither(successEvent, failureEvent): Promise — resolve or reject promise with events

Returns promise that resolves when successEvent is emitted with the payload of event. Promise rejected when failureEvent is emitted, as error passed payload of the failureEvent. Listeners removed when successEvent or failureEvent is received and promise resolves just once.

emitter
  .takeEither("success", "failure")
  .then((payload) => console.log("Yeeah", payload))
  .catch((error) => console.log("Noooo", error))

emitter.emit("success", 500) // Yeeah 500
// or
emitter.emit("failure", "Vader is my father!") // Noooo Vader is my father

Unsubscribe from events

The .on(), .once() and same returns unsubscribe function, that can be called multiple times at any time.

const unsubscribeHello = emitter.on("hello", helloHandler)
const unsubscribeBye = emitter.on("bye", helloHandler)

unsubscribeHello() // now helloHandler will not be called when "hello" is emitted

.off(eventName) — remove all listeners

Note: destructive operation

The method removes all listeners from emitter. Use it with caution, if called .take methods, promises will never be fullfilled.

emitter.off("hello") // all listeners removed

Roadmap

  • [ ] Add emitter.off(eventName, handler)
  • [ ] Add * event to listen all events
  • [ ] Add emitter.events(): string[]
  • [ ] Add emitting::listenerAdded, emitting::listenerRemoved
  • [ ] Add support for reactive (.subscribe)
  • [ ] Add async iterators (.iterate(eventName))
  • [ ] Add benchmarks
  • [ ] Add .public(): PublicEmitter and .private(): PrivateEmitter

License

MIT