oRPC Elysia Adapter

Installation
SKILL.md

Elysia Adapter

Elysia is a high-performance Bun web framework following the Fetch API.

Basic

import { Elysia } from 'elysia'
import { RPCHandler } from '@orpc/server/fetch'
import { onError } from '@orpc/server'

const handler = new RPCHandler(router, {
  interceptors: [onError(e => console.error(e))],
})
Related skills
Installs
First Seen