oRPC H3 Adapter
Installation
SKILL.md
H3 Adapter
H3 is a universal, tiny, and fast web framework built on top of web standards.
Basic
import { H3, serve } from 'h3'
import { RPCHandler } from '@orpc/server/fetch'
import { onError } from '@orpc/server'
const app = new H3()
const handler = new RPCHandler(router, {
interceptors: [onError(e => console.error(e))],
})