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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@feelai/stream

v1.1.0

Published

A utility library providing a powerful wrapper around `TypedEventEmitter`. It enhances standard event emitters with promise-based event waiting, cancellation support, and a fluent API.

Downloads

559

Readme

@feelai/stream

A utility library providing a powerful wrapper around TypedEventEmitter. It enhances standard event emitters with promise-based event waiting, cancellation support, and a fluent API.

Features

  • Promise-based Event Handling: Wait for specific events using waitFor(event), returning a Promise so you can await it.
  • Cancellation: Built-in AbortController support to cancel pending operations with cancel().
  • Type Safety: Built on top of typed-emitter for full TypeScript support.
  • Fluent API: Chainable on, off, and once methods.
  • Completion Helpers: finish() and done() methods to easily await the end of a stream.

Usage

import { createStream } from "@feelai/stream";
import { EventEmitter } from "events";
import TypedEventEmitter from "typed-emitter";

// Define your events
type MyEvents = {
  data: (chunk: string) => void;
  error: (err: Error) => void;
  end: () => void;
};

// Create a typed emitter
const myEmitter = new EventEmitter() as TypedEventEmitter<MyEvents>;

// Wrap it with createStream
const stream = createStream(myEmitter);

// Using standard event listeners (chainable)
stream.on("data", (chunk) => console.log("Received:", chunk)).once("end", () => console.log("Stream ended"));

// Using async/await
async function processStream() {
  try {
    // Wait for a specific event
    const [chunk] = await stream.waitFor("data");
    console.log("First chunk:", chunk);

    // Wait for stream completion
    await stream.finish();
    console.log("Done!");
  } catch (err) {
    console.error("Stream error or cancelled:", err);
  }
}

processStream();

// Cancellation
// stream.cancel(); // This will reject any pending waitFor promises

API Reference

createStream(emitter)

Creates a new Stream instance wrapping the provided TypedEventEmitter.

Class Stream<EM>

Methods

  • constructor(emitter: TypedEventEmitter<EM>)
  • on(event, listener): Register a listener. Returns this.
  • off(event, listener): Remove a listener. Returns this.
  • once(event, listener): Register a one-time listener. Returns this.
  • waitFor(event): Returns a Promise that resolves with the event arguments when the event is emitted. Rejects if the stream emits "error" or is cancelled.
  • cancel(): Aborts the internal controller and rejects all pending waitFor promises.
  • finish() / done(): Returns a Promise that resolves when the "end" event is emitted.