Example projects.
Clone, modify, deploy. Production-ready templates for common patterns.
Explore the details
Follow a value through the payload.
An event name, an object key, and a size. Trace each value from a nested payload to its meaning.
Interactive example
1
{2
"event": { "type": "object.created" },3
"data": {4
"key": "images/cover.webp",5
"size": 20486
}7
}Selected value
event.type
"object.created"Example event data. No request is sent.
Browse examples
StarterHTTP handlerMinimal request/response handler. Typed routes, JSON body parsing, proper error codes.
Real-timeWebSocket serverPersistent connections with broadcast rooms. Heartbeats, graceful shutdown, backpressure.
AsyncQueue consumerProcess Buzz queue messages with retries, dead-letter routing, and batch acknowledgment.
ScheduledCron jobScheduled Waggle task with idempotent execution, structured logging, and alerting hooks.
AIAgentLong-lived autonomous agent with durable state, tool calling, and health reporting.
PlatformMulti-tenantTenant-aware routing, isolated storage, per-tenant config, and usage metering.