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

@statewalker/fsm

v0.37.0

Published

HFSM Implementation

Readme

@statewalker/fsm: Hierarchical Finite State Machine

Class-based HFSM with nested states, event-driven transitions, lifecycle hooks, and dump/restore serialization.

Core Classes

FsmStateConfig

Declarative state tree definition:

const config: FsmStateConfig = {
  key: "Main",
  transitions: [
    ["", "start", "Active"],     // initial → Active
    ["Active", "done", ""],      // Active → final
    ["*", "reset", "Active"],    // any → Active
  ],
  states: [
    { key: "Active", states: [
      { key: "Step1" },
      { key: "Step2" },
    ], transitions: [
      ["", "", "Step1"],         // initial → Step1 (eventless)
      ["Step1", "next", "Step2"],
    ]},
  ],
};

FsmProcess

Runtime state machine. Maintains a state stack (root → ... → leaf), dispatches events, manages lifecycle.

  • dispatch(event) — trigger a transition
  • shutdown() — exit all states gracefully
  • state — current leaf state
  • status — bitmask tracking enter/exit cycle
  • onStateCreate(handler) — called for every new state (primary extension point)
  • dump() / restore(data) — serialization hooks

FsmState

Individual node in the state hierarchy.

  • key — state name
  • parent — parent state
  • onEnter(handler) — run when entering
  • onExit(handler) — run when exiting (reverse order)
  • onStateError(handler) — error handling
  • dump() / restore(data) — per-state serialization

Orchestrator

startProcess(context, config, load, startEvent?)

High-level entry point: creates FsmProcess, wires handlers, binds FSM into context.

Context keys bound:

  • fsm:dispatch — dispatch function
  • fsm:terminate — shutdown function
  • fsm:states — current state stack
  • fsm:event — last event

load(stateKey) returns handler(s) for each state. Handlers can return:

  • void — no cleanup
  • Function — registered as onExit cleanup
  • AsyncGenerator — yielded events are dispatched to FSM

HandlerRegistry

Convention-based handler discovery via createHandlerRegistry():

const registry = createHandlerRegistry();
registry.addConfig("MyProcess", config);
registry.addHandlers("MyProcess", { "Active": activeHandler, "Step1": step1Handler });
const load = registry.getLoader("MyProcess");

launcher(config)

Multi-process launcher with strict types:

interface LauncherConfig {
  processes: ProcessDef[];
  start?: string[];
  context?: (parent: Record<string, unknown>) => Record<string, unknown>;
}

interface ProcessDef {
  name: string;
  config: FsmStateConfig;
  handlers?: (StageHandler | Record<string, StageHandler | StageHandler[]>)[];
  start?: boolean;
}

Utilities

  • printer(process) — log state transitions to console
  • tracer(process) — collect transition trace for testing

Migration from pre-0.35

Removed in 0.35:

  • FsmBaseClass.data, .setData(), .getData() — use closures or context instead
  • FsmState.getData(key, recursive), .useData(key) — use closures
  • FsmBaseClass._runHandlerParallel() — handlers run sequentially now
  • newFsmProcess() — use startProcess() from orchestrator
  • utils/handlers.ts (addSubstateHandlers, callStateHandlers) — use HandlerRegistry
  • utils/process.ts — use startProcess() directly