oRPC Fastify Adapter
Installation
SKILL.md
Fastify Adapter
Fastify integration.
Fastify parses common request content types by default. oRPC will use the parsed body when available.
Basic
import Fastify from 'fastify'
import { RPCHandler } from '@orpc/server/fastify'
import { onError } from '@orpc/server'
const rpcHandler = new RPCHandler(router, {
interceptors: [onError(e => console.error(e))],
})
const fastify = Fastify()