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

@jewel998/state-machine

v0.0.5

Published

A lightweight, type-safe stateless state machine library for JavaScript/TypeScript. Zero per-object overhead, async transactions with database rollbacks, scales to millions of objects efficiently.

Readme

NPM Version NPM Downloads

@jewel998/state-machine

A lightweight, type-safe state machine library for JavaScript/TypeScript with production-ready performance and clean architecture. Features declarative state management, comprehensive error handling, and server-scale performance testing.

Features

  • 🎯 Declarative API - Clean, intuitive syntax for state definitions
  • 🔒 Type Safety - Full TypeScript support with strict type checking
  • 🏗️ Builder Pattern - Fluent API with method chaining
  • Production Ready - Optimized bundle (~45KB) with tree-shaking support
  • 🛡️ Guard Conditions - Conditional transition logic (sync & async)
  • 📝 Actions - State entry, exit, and transition actions (sync & async)
  • 🔧 Middleware Pipeline System - Powerful middleware system with BaseMiddleware class and extensible architecture
  • 🔄 Async Transactions - Database transactions with automatic rollback
  • 🚨 Error Handling - Comprehensive error types with rollback support
  • 🔍 Observability - Built-in statistics, history, and event tracking
  • 🚀 Performance - Stateless definitions for zero per-object overhead
  • 🏭 Scalable - Efficient pattern for millions of objects
  • 🧪 Testing - Comprehensive test suite

Installation

npm install @jewel998/state-machine
pnpm add @jewel998/state-machine
yarn add @jewel998/state-machine

Quick Start

import { StateMachine } from '@jewel998/state-machine';

// 1. Create ONE shared definition (zero per-object overhead)
const orderWorkflow = StateMachine.definitionBuilder()
  .initialState('PENDING')
  .state('PENDING')
  .state('APPROVED')
  .state('SHIPPED')
  .transition('PENDING', 'APPROVED', 'approve')
  .transition('APPROVED', 'SHIPPED', 'ship')
  .buildDefinition();

// 2. Objects just track their state
class Order {
  constructor(id) {
    this.id = id;
    this.state = 'PENDING'; // Just the state value - no machine instance!
  }

  processEvent(event) {
    const result = orderWorkflow.processEvent(this.state, event, this);
    if (result.success) {
      this.state = result.newState;
    }
    return result.success;
  }
}

// 3. Scale to millions with shared definition
const orders = Array.from({ length: 1000000 }, (_, i) => new Order(`ORD-${i}`));
orders.forEach((order) => order.processEvent('approve'));
console.log('Processed 1M orders with ONE shared definition!');

Advanced Usage

Async Transactions with Database Rollback

const orderWorkflow = StateMachine.definitionBuilder()
  .initialState('DRAFT')
  .state('DRAFT')
  .state('INVENTORY_RESERVED')
  .state('PAYMENT_PROCESSED')
  .state('CONFIRMED')

  // Reserve inventory with automatic rollback on failure
  .transition('DRAFT', 'INVENTORY_RESERVED', 'reserve_inventory')
  .transaction(
    async (context) => {
      await database.reserveInventory(context.orderId, context.quantity);
      await database.updateOrderStatus(context.orderId, 'RESERVED');
    },
    async (context, error) => {
      // Automatic rollback on any failure
      await database.rollbackInventory(context.orderId, context.quantity);
    }
  )

  // Process payment with rollback
  .transition('INVENTORY_RESERVED', 'PAYMENT_PROCESSED', 'process_payment')
  .transaction(
    async (context) => {
      await paymentService.charge(context.orderId, context.amount);
    },
    async (context, error) => {
      // Rollback both payment and inventory
      await paymentService.refund(context.orderId, context.amount);
      await database.rollbackInventory(context.orderId, context.quantity);
    }
  )

  .buildDefinition();

// Use async processing
class Order {
  async processEvent(event) {
    const result = await orderWorkflow.processEventAsync(this.state, event, this);
    if (result.success) {
      this.state = result.newState;
    } else if (result.rollbackExecuted) {
      console.log('Transaction rolled back automatically');
    }
    return result.success;
  }
}

Guards and Actions (Sync & Async)

const workflow = StateMachine.definitionBuilder()
  .initialState('IDLE')
  .state('PROCESSING')
  .state('COMPLETED')

  .transition('IDLE', 'PROCESSING', 'start')
  .guard(async (context) => {
    // Async guard - check permissions from database
    return await permissionService.hasAccess(context.userId);
  })
  .action(async (context) => {
    // Async action
    await auditService.log('Processing started', context);
  })

  .onStateEntry('PROCESSING', async (context) => {
    await context.startTimer();
  })

  .buildDefinition();

TypeScript Support

interface OrderContext {
  orderId: string;
  amount: number;
  approved: boolean;
}

type OrderState = 'PENDING' | 'APPROVED' | 'REJECTED' | 'SHIPPED';
type OrderEvent = 'approve' | 'reject' | 'ship';

const orderMachine = StateMachine.builder<OrderContext, OrderState, OrderEvent>()
  .initialState('PENDING')
  .state('PENDING')
  .state('APPROVED')
  .state('REJECTED')
  .state('SHIPPED')
  .transition('PENDING', 'APPROVED', 'approve')
  .guard((context) => context.amount < 10000)
  .transition('PENDING', 'REJECTED', 'reject')
  .transition('APPROVED', 'SHIPPED', 'ship')
  .build();

Middleware Pipeline System

Create powerful, composable middleware with the new pipeline architecture:

import { StateMachine, BaseMiddleware } from '@jewel998/state-machine';

// Create custom middleware extending BaseMiddleware
class LoggingMiddleware extends BaseMiddleware<OrderContext, OrderState> {
  constructor() {
    super('logging', { priority: 100 });
  }

  async onAction(context, next, originalAction) {
    console.log(`Processing order ${context.currentContext.orderId}`);
    const result = await next();
    console.log('Order processing completed');
    return result;
  }

  async onBeforePipeline(context) {
    console.log(`Pipeline ${context.pipelineId} starting`);
  }
}

class ValidationMiddleware extends BaseMiddleware<OrderContext, OrderState> {
  constructor() {
    super('validation', { priority: -100 }); // Run first
  }

  async onGuard(context, next, originalGuard) {
    if (context.currentContext.amount <= 0) {
      return false; // Stop pipeline
    }
    return await next();
  }
}

// Build state machine with middleware pipeline
const definition = StateMachine.definitionBuilder<OrderContext, OrderState, OrderEvent>()
  .initialState('PENDING')
  .state('PENDING')
  .state('APPROVED')
  .transition('PENDING', 'APPROVED', 'approve')
  .action((context) => {
    context.approved = true;
    context.approvedAt = Date.now();
  })

  // Add middleware - executes in priority order
  .addMiddleware(new ValidationMiddleware()) // Priority: -100 (first)
  .addMiddleware(new LoggingMiddleware()) // Priority: 100 (second)
  .buildDefinition();

// Use async methods for full middleware support
const result = await definition.processEventAsync('PENDING', 'approve', orderContext);

Key Features:

  • Complete Pipeline Implementation - All middleware methods fully functional
  • BaseMiddleware Class - Type-safe base class for easy custom middleware
  • Pipeline Context - Access to execution order, pipeline ID, and previous results
  • Backward Compatibility - Existing middleware configurations work unchanged
  • Error Handling - Comprehensive error handling and recovery mechanisms

Examples

Check out the comprehensive examples in the examples/ directory:

  • stateless-pattern.js - Efficient stateless pattern with 1M objects
  • async-transactions.js - Database transactions with automatic rollbacks
  • advanced-features.js - Complex workflows with guards and actions
# Run the stateless pattern demo
node examples/stateless-pattern.js

# Run async transaction demo
node examples/async-transactions.js

# Run advanced features demo
node examples/advanced-features.js

API Reference

StateMachine.definitionBuilder()

Creates a new stateless definition builder instance.

Builder Methods

  • .initialState(state) - Set the initial state
  • .state(state) - Define a state
  • .transition(from, to, event) - Define a transition
  • .guard(condition) - Add guard condition (sync or async)
  • .action(callback) - Add action (sync or async)
  • .transaction(callback, rollback) - Add async transaction with rollback
  • .onStateEntry(state, callback) - Add state entry action
  • .onStateExit(state, callback) - Add state exit action
  • .buildDefinition() - Create the stateless definition

Definition Methods

  • .processEvent(currentState, event, context) - Process event synchronously
  • .processEventAsync(currentState, event, context) - Process event asynchronously
  • .canTransition(currentState, event, context) - Check if transition is possible
  • .canTransitionAsync(currentState, event, context) - Check transition asynchronously
  • .getAvailableEvents(currentState, context?) - Get available events for state
  • .getInitialState() - Get the initial state
  • .getAllStates() - Get all defined states

Error Handling

The library provides comprehensive error handling with specific error types:

import {
  StateMachine,
  InvalidTransitionError,
  GuardConditionError,
  ActionExecutionError,
} from '@jewel998/state-machine';

try {
  machine.sendEventStrict('invalid_event');
} catch (error) {
  if (error instanceof InvalidTransitionError) {
    console.log(`Available events: ${error.availableEvents}`);
  } else if (error instanceof GuardConditionError) {
    console.log(`Guard failed: ${error.fromState} -> ${error.toState}`);
  } else if (error instanceof ActionExecutionError) {
    console.log(`Action failed: ${error.actionType} in ${error.state}`);
  }
}

Use Cases

  • Workflow Management - Model business processes and approval workflows
  • Game Development - Manage game states, character states, and UI flows
  • Form Validation - Handle multi-step forms with complex validation rules
  • API Integration - Manage request/response cycles and error handling
  • UI Components - Control component behavior and user interactions

Development

Quick Start

# Setup development environment
npm run setup

# Run tests
npm test

# Run stateless performance tests
npm run perf:quick

# Development workflow
npm run dev help

Scripts

  • npm run setup - Complete development setup
  • npm run test:all - Comprehensive test suite
  • npm run perf:quick - Quick stateless performance tests
  • npm run perf:server - Server-scale performance tests (millions of ops)
  • npm run ci - CI/CD pipeline simulation
  • npm run dev <command> - Development workflow automation

Contributing

Contributions are welcome! Please read our Contributing Guide for details on our code of conduct and the process for submitting pull requests.

License

This project is licensed under the Apache License 2.0 - see the LICENSE file for details.

Changelog

See CHANGELOG.md for a detailed history of changes.

Support