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

@lafken/state-machine

v0.16.1

Published

Build Step Functions workflows with TypeScript decorators - declarative orchestration with Lafken

Downloads

989

Readme

@lafken/state-machine

Define AWS Step Functions state machines using TypeScript decorators. @lafken/state-machine lets you declare states, transitions, service integrations, and nested workflows directly within your classes — no raw JSON or ASL required.

[!NOTE] This library exclusively supports JSONata for data transformation and querying. JSONPath is not supported.

Installation

npm install @lafken/state-machine

Getting Started

Register the StateMachineResolver in your application and define your first workflow:

import { createApp, createModule } from '@lafken/main';
import { StateMachineResolver } from '@lafken/state-machine/resolver';
import { StateMachine, State, Event } from '@lafken/state-machine/main';

// 1. Define the state machine
@StateMachine({
  startAt: 'processOrder',
})
class OrderWorkflow {
  @State({ next: 'notifyCustomer' })
  processOrder(@Event('{% $states.input %}') order: any) {
    return { orderId: order.id, status: 'processed' };
  }

  @State({ end: true })
  notifyCustomer(@Event('{% $states.input %}') data: any) {
    console.log(`Order ${data.orderId} completed`);
  }
}

// 2. Register it in a module
const orderModule = createModule({
  name: 'orders',
  resources: [OrderWorkflow],
});

// 3. Add the resolver to your app
createApp({
  name: 'my-app',
  resolvers: [new StateMachineResolver()],
  modules: [orderModule],
});

Features

Defining a State Machine

Use the @StateMachine decorator to mark a class as a state machine resource. The startAt property defines the entry point of the workflow and must reference either a method name or an inline state definition.

import { StateMachine, State } from '@lafken/state-machine/main';

@StateMachine({
  startAt: 'validate',
})
export class PaymentWorkflow {
  @State({ next: 'charge' })
  validate(@Event('{% $states.input %}') input: any) {
    return { amount: input.amount, valid: true };
  }

  @State({ end: true })
  charge(@Event('{% $states.input %}') input: any) {
    return { charged: input.amount };
  }
}

You can also start with a declarative state instead of a Lambda task:

@StateMachine({
  startAt: {
    type: 'wait',
    seconds: 5,
    next: { type: 'succeed' },
  },
})
export class DelayedWorkflow {}

Declarative states receive a generated name based on their type (e.g. pass, wait, wait-2). You can provide a custom name with the name option, which is used as the state name in the Step Functions definition while keeping names unique within the state machine:

@StateMachine({
  startAt: {
    type: 'wait',
    name: 'initial-delay',
    seconds: 5,
    next: { type: 'succeed', name: 'done' },
  },
})
export class DelayedWorkflow {}

State Machine Configuration

Beyond startAt, @StateMachine accepts these state-machine-level options:

| Option | Type | Description | | --- | --- | --- | | executionType | 'STANDARD' \| 'EXPRESS' | STANDARD for long-running, exactly-once workflows; EXPRESS for high-throughput, short-duration ones. | | services | Services[] | Additional IAM permissions for the state machine's role — see AWS Service Integrations. | | loggingConfiguration | object | Enables CloudWatch Logs for execution history: logGroupName, level ('all'\|'error'\|'fatal'\|'off'), includeExecutionData, retentionInDays. | | enableTrace | boolean | Enables AWS X-Ray tracing for the state machine. | | outputs | ResourceOutputType<'id' \| 'arn' \| 'stateMachineVersionArn'> | Exports an attribute to SSM Parameter Store or as a Terraform output. | | ref | string | Registers the state machine as a named global reference, retrievable via Refs.resourceValue('state-machine::<ref>', attr). |

@StateMachine({
  startAt: 'process',
  executionType: 'EXPRESS',
  enableTrace: true,
  loggingConfiguration: {
    logGroupName: '/aws/states/order-workflow',
    level: 'error',
    includeExecutionData: true,
    retentionInDays: 30,
  },
  outputs: [{ type: 'output', name: 'order_workflow_arn', value: 'arn' }],
  ref: 'order-workflow',
})
export class OrderWorkflow {
  @State({ end: true })
  process(@Event('{% $states.input %}') input: any) {}
}

Every state machine's IAM role is automatically granted cloudwatch and lambda permissions (for execution logging and invoking its own task Lambdas), plus S3 read/write permissions auto-derived from any Distributed Map state's itemReader/resultWriter buckets (see below) — services only needs to cover what your own tasks/integrations require beyond that.

Lambda Tasks

The @State decorator turns a method into a Lambda-backed task within the state machine. Step Functions will invoke the Lambda automatically during execution.

Use next to chain to the following state, or end: true to mark it as a terminal state:

@StateMachine({ startAt: 'enrich' })
export class DataPipeline {
  @State({ next: 'store' })
  enrich(@Event('{% $states.input %}') record: any) {
    return { ...record, enrichedAt: new Date().toISOString() };
  }

  @State({ end: true })
  store(@Event('{% $states.input %}') record: any) {
    console.log('Storing record:', record);
  }
}

Output Transformation

Use the output option to transform a state's result before passing it to the next state. It accepts a JSONata expression or a plain object:

@State({
  next: 'process',
  output: '{% $states.result.data %}',
})
fetchData() {
  return { data: { items: [1, 2, 3] }, metadata: {} };
}

State Assignment

Use assign to add or update values in the state machine context. Assigned values persist across subsequent states:

@State({
  next: 'sendEmail',
  assign: { attemptCount: '{% $states.input.attemptCount + 1 %}' },
})
retry(@Event('{% $states.input %}') input: any) {
  return input;
}

AWS Service Integrations

Instead of invoking a Lambda function, a state can directly call an AWS service API. Use the integrationResource property to specify the service ARN, and reference other infrastructure resources with Refs.resourceValue/Refs.ssmValue, imported directly from @lafken/common.

This pattern eliminates the need for intermediate Lambda functions when you just need to call an AWS service (DynamoDB, SQS, SNS, etc.).

import { StateMachine, State, Event } from '@lafken/state-machine/main';
import { Refs } from '@lafken/common';

@StateMachine({
  startAt: 'saveItem',
  services: ['dynamodb'],
})
export class InventoryWorkflow {
  @State({
    integrationResource: 'arn:aws:states:::dynamodb:putItem',
    next: 'confirm',
  })
  saveItem() {
    return {
      TableName: Refs.resourceValue('dynamo::inventory', 'id'),
      Item: {
        sku: { S: '{% $states.input.sku %}' },
        quantity: { N: '{% $string($states.input.quantity) %}' },
      },
    };
  }

  @State({ end: true })
  confirm(@Event('{% $states.input %}') e: any) {
    console.log('Item saved successfully');
  }
}

A read example using getItem:

@State({
  integrationResource: 'arn:aws:states:::dynamodb:getItem',
  next: 'processResult',
  output: '{% $states.result.Item %}',
})
lookupUser() {
  return {
    TableName: Refs.resourceValue('dynamo::users', 'id'),
    Key: {
      email: { S: '{% $states.input.email %}' },
    },
  };
}

Nested State Machines

Complex workflows often require sub-workflows for parallel execution or iteration over collections. Use @NestedStateMachine to define these embedded workflows.

Map State

A Map state iterates over a collection and executes a set of states for each item:

import { StateMachine, NestedStateMachine, State, Event } from '@lafken/state-machine/main';

@NestedStateMachine({
  startAt: 'processItem',
})
class ItemProcessor {
  @State({ end: true })
  processItem(@Event('{% $states.input %}') item: any) {
    return { id: item.id, processed: true };
  }
}

@StateMachine({
  startAt: {
    type: 'map',
    mode: 'inline',
    items: '{% $states.input.items %}',
    states: ItemProcessor,
    end: true,
  },
})
export class BatchWorkflow {}

Distributed Map

For large collections, run each iteration as its own state machine execution with mode: 'distributed' — this scales past inline mode's concurrency limits and can read its input directly from S3:

@StateMachine({
  startAt: {
    type: 'map',
    mode: 'distributed',
    executionType: 'standard',
    states: ItemProcessor,
    itemReader: {
      source: 'json',
      bucket: 'orders-bucket',
      key: 'batch/orders.json',
    },
    resultWriter: {
      bucket: 'orders-bucket',
      prefix: 'results/',
      config: { outputType: 'JSON' },
    },
    toleratedFailurePercentage: 5,
    maxItemsPerBatch: 100,
    end: true,
  },
})
export class BatchOrderWorkflow {}

| Option | Type | Description | | --- | --- | --- | | executionType | 'standard' \| 'express' | Execution mode for each iteration's underlying execution. | | itemReader | object | Source of the items to iterate: JSON/JSONL/manifest from S3 (source, bucket, key, optional itemsPointer/maxItems) or CSV (source: 'csv', plus headers: { location, titles? }/delimiter). | | resultWriter | object | Where iteration results are written — bucket, prefix, and optional config: { outputType, transformation } ('JSON'\|'JSONL', 'NONE'\|'COMPACT'\|'FLATTEN'). | | toleratedFailurePercentage / toleratedFailureCount | number \| JSONata | Maximum share/count of failed items before the whole Map state is considered failed. | | maxItemsPerBatch | number \| JSONata | Maximum number of items processed per batch. |

itemReader/resultWriter buckets are automatically granted S3 read/write permissions on the state machine's role — no need to add them to services.

Parallel State

A Parallel state runs multiple branches concurrently. Each branch is a class decorated with @NestedStateMachine:

@NestedStateMachine({ startAt: 'sendEmail' })
class EmailBranch {
  @State({ end: true })
  sendEmail(@Event('{% $states.input %}') e: any) {
    console.log('Sending email...');
  }
}

@NestedStateMachine({ startAt: 'sendSms' })
class SmsBranch {
  @State({ end: true })
  sendSms(@Event('{% $states.input %}') e: any) {
    console.log('Sending SMS...');
  }
}

@StateMachine({
  startAt: {
    type: 'parallel',
    branches: [EmailBranch, SmsBranch],
    end: true,
  },
})
export class NotificationWorkflow {}

Choice State

Use the choice type in startAt or next to define conditional branching based on JSONata expressions:

@StateMachine({
  startAt: {
    type: 'choice',
    choices: [
      {
        condition: '{% $states.input.priority = "high" %}',
        next: 'expedite',
      },
      {
        condition: '{% $states.input.priority = "low" %}',
        next: 'enqueue',
      },
    ],
    default: { type: 'fail', error: 'UnknownPriority', cause: 'Priority not recognized' },
  },
})
export class RoutingWorkflow {
  @State({ end: true })
  expedite(@Event('{% $states.input %}') e: any) {
    return { routed: 'express' };
  }

  @State({ end: true })
  enqueue(@Event('{% $states.input %}') e: any) {
    return { routed: 'standard' };
  }
}

Error Handling

States support retry and catch configurations for resilient workflows:

@State({
  next: 'done',
  retry: [
    {
      errorEquals: ['States.TaskFailed'],
      intervalSeconds: 2,
      maxAttempt: 3,
      backoffRate: 2,
      maxDelaySeconds: 60,
      jitterStrategy: 'FULL',
    },
  ],
  catch: [
    {
      errorEquals: ['States.ALL'],
      next: { type: 'fail', error: 'ProcessingError', cause: 'Task failed after retries' },
    },
  ],
})
riskyOperation(@Event('{% $states.input %}') input: any) {
  // This operation will be retried up to 3 times on failure
  return { result: 'done' };
}

| Retry option | Type | Description | | --- | --- | --- | | errorEquals | ErrorType[] | Error names that trigger this retry. | | intervalSeconds | number | Seconds to wait before the first retry attempt. | | maxAttempt | number | Maximum number of retry attempts. | | backoffRate | number | Multiplier applied to intervalSeconds after each retry. | | maxDelaySeconds | number | Caps the exponential backoff delay between retries. | | jitterStrategy | 'FULL' \| 'NONE' | 'FULL' adds up to 100% random jitter to the delay; 'NONE' disables it. |

State Events & Payloads

Each @State method can receive input data through the @Event decorator. You can pass either a JSONata expression or a typed @Payload class.

JSONata Expression

Extract or transform the incoming event inline:

@State({ end: true })
handle(@Event('{% $states.input.user %}') user: { name: string; role: string }) {
  console.log(`User: ${user.name}, Role: ${user.role}`);
}

Typed Payload

Define a structured payload class with @Payload and @Param decorators for clear, declarative input mapping:

import { Payload, Param } from '@lafken/state-machine/main';

@Payload()
export class InvoiceInput {
  @Param({ context: 'input', source: 'invoiceId' })
  invoiceId: string;

  @Param({ context: 'input', source: 'lineItems', type: [Number] })
  lineItems: number[];

  @Param({ context: 'execution', source: 'id' })
  executionId: string;
}

@StateMachine({ startAt: 'generateInvoice' })
export class InvoiceWorkflow {
  @State({ next: 'send' })
  generateInvoice(@Event(InvoiceInput) input: InvoiceInput) {
    return { id: input.invoiceId, total: input.lineItems.reduce((a, b) => a + b, 0) };
  }

  @State({ end: true })
  send(@Event('{% $states.input %}') invoice: any) {
    console.log('Sending invoice:', invoice.id);
  }
}

Available @Param contexts:

| Context | Description | Example sources | | ---------------- | ------------------------------------------- | -------------------------------------- | | input | Values from the state input | Any field name (e.g. 'orderId') | | execution | Execution metadata | 'id', 'name', 'start_time' | | state | Current state metadata | 'entered_time', 'name' | | state_machine | State machine metadata | 'id', 'name' | | task | Task metadata | 'token' | | custom | A hardcoded value | Use value instead of source | | jsonata | A dynamic JSONata expression | Use value with a JSONata string |