oRPC Astro Adapter
Installation
SKILL.md
Astro Adapter
Astro is a JavaScript web framework optimized for fast, content-driven websites. For HTTP context, see the HTTP Adapter guide.
Basic
// pages/rpc/[...rest].ts
import { RPCHandler } from '@orpc/server/fetch'
import { onError } from '@orpc/server'
const handler = new RPCHandler(router, {
interceptors: [
onError((error) => {
console.error(error)
}),
],
})