Use oRPC inside an Elysia project.
Scanned 9/12/2026
Install to Claude Code
npx -y skills add ali-master/skills --skill orpc-elysia --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Orpc Elysia?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/ali-master-orpc-elysia)More formats (shields.io, HTML) on the badges page.
---
name: oRPC Elysia Adapter
description: Use oRPC inside an Elysia project.
license: MIT
metadata:
author: Ali Torki
homepage: https://github.com/ali-master
version: "1.0.0"
---
# Elysia Adapter
[Elysia](https://elysiajs.com/) is a high-performance Bun web framework following the Fetch API.
## Basic
```ts
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))],
})
const app = new Elysia()
.all('/rpc*', async ({ request }: { request: Request }) => {
const { response } = await handler.handle(request, { prefix: '/rpc' })
return response ?? new Response('Not Found', { status: 404 })
}, {
parse: 'none' // Disable Elysia body parser to prevent "body already used" error
})
.listen(3000)
```
> The `handler` can be any supported oRPC handler — `RPCHandler`, `OpenAPIHandler`, or a custom handler.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!
Use this skill when developing or maintaining browser extension code in the `browser/` directory, including Chrome/Firefox/Edge compatibility, content scripts, background scripts, or i18n updates.