Reference

Operations

Every verb in the Routecraft DSL. Each row opens its own reference page with the full signature, options, and examples.

craft()
  .id('my-route')
  .from(simple('x'))
  .filter((s) => s.length > 0)
  .transform((s) => s + '!')
  .to(log())

Route

10

Wrapper

07

Transform

06

Flow Control

12

Side Effects

04

Adapters

Sources, destinations, and transformers that connect operations to the outside world.

Events

The lifecycle events emitted around every operation.

Errors

Error codes raised by operations and how to recover them.

Previous
Adapters