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

@effectstream/node-sdk

v0.101.1

Published

Main application node SDK for EffectStream

Readme

@effectstream/node-sdk

An umbrella package that re-exports every EffectStream runtime piece (runtime, state machine, sync, database, events, config, utils, concise schemas) under stable subpaths. Depend on this if you want a single name; import the underlying packages directly if you prefer.

  • Umbrella package: every Effectstream node piece reachable from one dependency.
  • Stable subpaths re-exporting the underlying packages (/runtime, /sm, /db, /config, ...).
  • Depend on this if you want a single name; import the underlying packages directly if you prefer.
  • Subpaths are thin re-exports, identical semantics to the source packages.

Install

bun add @effectstream/node-sdk
# or
npm install @effectstream/node-sdk

Standalone usage

Every piece is reachable from one dependency:

import { init, start } from "@effectstream/node-sdk/runtime";
import { Stm } from "@effectstream/node-sdk/sm";
import { getConnection } from "@effectstream/node-sdk/db";
import { ConfigBuilder, ConfigNetworkType } from "@effectstream/node-sdk/config";

The subpaths are thin re-exports - semantics are identical to importing from the underlying packages.

Inside EffectStream

A namespace seam, not a runtime piece. Each subpath simply re-exports the corresponding package:

@effectstream/node-sdk/runtime    → @effectstream/runtime
@effectstream/node-sdk/sm         → @effectstream/sm
@effectstream/node-sdk/db         → @effectstream/db
…

Subpath exports

  • @effectstream/node-sdk/runtime: init, start, StartConfig, DBMigrations.
  • @effectstream/node-sdk/sm: Stm plus state-machine types and helpers.
  • @effectstream/node-sdk/sm/builtin ships built-in primitive type tags (ERC20, ERC721, ERC1155, Cardano transfer/mint-burn/pool-delegation, Midnight generic, NEAR, Avail, Celestia, ...).
  • @effectstream/node-sdk/sm/grammar: concise/grammar parsing utilities.
  • @effectstream/node-sdk/sync - genSyncProtocols and per-chain fetcher classes.
  • @effectstream/node-sdk/db: getConnection, query helpers, snapshot utilities.
  • @effectstream/node-sdk/db/start-pglite, ./db/apply-migrations, ./db/db-wait, ./db/pgtyped-update, ./db/version: DB operations scripts.
  • @effectstream/node-sdk/db-emulator: in-memory test DB migration runner.
  • @effectstream/node-sdk/event-server: local MQTT broker.
  • @effectstream/node-sdk/config: ConfigBuilder and friends.
  • @effectstream/node-sdk/chain-types, ./precompile, ./concise, ./coroutine are pass-throughs to the same-named SDK packages.
  • @effectstream/node-sdk/utils, ./utils/node-env, ./utils/runtime: utility helpers.

Examples

Runnable: test/examples.test.ts - verifies each subpath resolves.

For full working nodes, see:

Links

  • Docs: https://effectstream.github.io/docs/packages/node/node-sdk
  • Source: https://github.com/effectstream/effectstream/tree/main/packages/node-sdk/node