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

stagehand

v1.0.1

Published

A type-safe library for communicating between JS processes, workers, or other message-passing boundaries.

Downloads

712,644

Readme

Stagehand CI

Stagehand provides a type-safe means of coordinating communication across an evented message-passing boundary, such as a web worker or a Node.js child process.

Example

The following is a quick example of how you might spin up a child process in Node to perform expensive computations:

// greeting-worker.js
import { launch } from 'stagehand/lib/adapters/child-process';

class GreetingWorker {
  veryExpensiveGreeting(target) {
    // The body of this method (and any others defined on the object passed to
    // `launch`) might be arbitrarily expensive synchronous or async work.
    return `Hello, ${target}!`;
  }
}

launch(new GreetingWorker());
// main.js
import { fork } from 'child_process';
import { connect } from 'stagehand/lib/adapters/child-process';

let worker = await connect(fork('./greeting-worker'));
let greeting = await worker.veryExpensiveGreeting('World');

console.log(greeting); // 'Hello, World!'

API

The main stagehand module exports three functions: launch, connect and disconnect. These functions all center around the concept of a MessageEndpoint, which is the core interface Stagehand uses for communication.

launch<T>(endpoint: MessageEndpoint, implementation: Implementation<T>)

This function is called to expose a backing implementation object across the given endpoint. Typically you'll call this from your child process/web worker/otherwise-somehow-secondary context in order to begin servicing commands from the parent.

In general, all functions on the implementation object passed to launch will be exposed on the corresponding object on the connect side, but made async where appropriate. This means that all return values from methods on implementation will be promises, but also that functions passed in to methods on the backing implementation will be asynchronous as well.

If you're using TypeScript, you'll find this invariant enforced by the signature of launch, i.e.

// This is valid:
launch(endpoint, {
  doSomething(callback: () => Promise<number>) {
    // Because `callback` is async, can communicate back to the parent when
    // called in order to get the return value
  },
});

// But this is not:
launch(endpoint, {
  doSomething(callback: () => number) {
    // There's no way for `callback` to synchronously get a return value
    // from the function originally passed on the parent side
  },
});

connect<T>(endpoint: MessageEndpoint): Promise<Remote<T>>

This function is called to connect to a backing implementation that was set up on the other end of the given message endpoint. It returns a promise that will ultimately resolve to a value that exposes the same methods as the backing implementation.

When calling these methods, their results will always be promises that resolve or reject based on the return value or thrown execption when that method is called on the implementation side.

disconnect<T>(remote: Remote<T>)

Disconnects the given stagehand worker, clearing any saved state on both ends and calling disconnect on both halves of the corresponding MessageEndpoint.

MessageEndpoint

A MessageEndpoint is any object with the following three methods:

  • onMessage(callback: (message: unknown) => void): void
  • sendMessage(message: unknown): void
  • disconnect(): void

Several adapters for converting common communication objects to this type are included in this library:

  • stagehand/lib/adapters/child-process creates endpoints for communicating to/from processes spawned with Node.js's fork (see the example above)
  • stagehand/lib/adapters/web-worker creates endpoints for communicating to /from web workers
  • stagehand/lib/adapters/in-memory create endpoints from scratch that both exist within the same process (mostly useful for testing)

These adapter modules also generally expose specialized versions of launch and connect that accept appropriate objects for the domain they deal with and internally convert them using the endpoint adapters also defined there.