Use oRPC inside a Remix project.
Scanned 9/12/2026
Install to Claude Code
npx -y skills add ali-master/skills --skill orpc-remix --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Orpc Remix?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/ali-master-orpc-remix)More formats (shields.io, HTML) on the badges page.
---
name: oRPC Remix Adapter
description: Use oRPC inside a Remix project.
license: MIT
metadata:
author: Ali Torki
homepage: https://github.com/ali-master
version: "1.0.0"
---
# Remix Adapter
[Remix](https://remix.run/) is a full stack JavaScript framework.
## Basic
```ts
// app/routes/rpc.$.ts
import { RPCHandler } from '@orpc/server/fetch'
import { onError } from '@orpc/server'
const handler = new RPCHandler(router, {
interceptors: [onError(e => console.error(e))],
})
export async function loader({ request }: LoaderFunctionArgs) {
const { response } = await handler.handle(request, {
prefix: '/rpc',
context: {}
})
return response ?? new Response('Not Found', { status: 404 })
}
```
> The `handler` can be any supported oRPC 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!