oRPC Event Iterator (SSE)
Installation
SKILL.md
Event Iterator (SSE)
oRPC provides built-in support for streaming responses, real-time updates, and server-sent events (SSE) without any extra configuration.
Overview
const example = os
.handler(async function* ({ input, lastEventId }) {
while (true) {
yield { message: 'Hello, world!' }
await new Promise(resolve => setTimeout(resolve, 1000))
}
})
Validate Event Iterator
Related skills
More from ali-master/skills
orpc ecosystem
Community resources, starter kits, tools, and libraries for oRPC.
2orpc comparison
How oRPC differs from tRPC, ts-rest, and Hono.
2orpc openapilink
Use OpenAPILink in oRPC clients to communicate with OpenAPI-compliant APIs.
2orpc middleware
Middleware enables reusable and extensible procedures in oRPC.
2orpc metadata
Enhance your procedures with metadata.
2orpc playgrounds
Interactive development environments for exploring and testing oRPC functionality.
2