orpc-error-handling
Manage errors in oRPC using both traditional and type-safe strategies.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Manage errors in oRPC using both traditional and type-safe strategies.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Quick reference for Better Notify configuration, patterns, and common gotchas
Interactive setup wizard for adding Better Notify to a TypeScript/JavaScript project
Context and API guidance for Better Notify — end-to-end typed notification infrastructure for Node.js
Seamlessly use AI SDK inside your oRPC projects without any extra overhead.
Use oRPC inside an Astro project.
Functions to encode and decode base64url strings (URL-safe variant of base64).
| name | oRPC Error Handling |
| description | Manage errors in oRPC using both traditional and type-safe strategies. |
| license | MIT |
| metadata | {"author":"Ali Torki","homepage":"https://github.com/ali-master","version":"1.0.0"} |
oRPC offers a robust error handling system. You can throw standard JavaScript errors or use the specialized ORPCError class.
The
ORPCError.dataproperty is sent to the client. Avoid including sensitive information.
const rateLimit = os.middleware(async ({ next }) => {
throw new ORPCError('RATE_LIMITED', {
message: 'You are being rate limited',
data: { retryAfter: 60 }
})
return next()
})
const example = os
.use(rateLimit)
.handler(async ({ input }) => {
throw new ORPCError('NOT_FOUND')
throw new Error('Something went wrong') // → INTERNAL_SERVER_ERROR
})
import { os } from '@orpc/server'
import * as z from 'zod'
const base = os.errors({
RATE_LIMITED: {
data: z.object({ retryAfter: z.number() }),
},
UNAUTHORIZED: {},
})
const rateLimit = base.middleware(async ({ next, errors }) => {
throw errors.RATE_LIMITED({
message: 'You are being rate limited',
data: { retryAfter: 60 }
})
return next()
})
const example = base
.use(rateLimit)
.errors({
NOT_FOUND: { message: 'The resource was not found' },
})
.handler(async ({ input, errors }) => {
throw errors.NOT_FOUND()
})
When you throw an ORPCError and code, status, and data match a defined error, oRPC treats it as if you used errors.[code].
const rateLimit = base.middleware(async ({ next, errors }) => {
// Both are equivalent:
throw errors.RATE_LIMITED({ data: { retryAfter: 60 } })
throw new ORPCError('RATE_LIMITED', { data: { retryAfter: 60 } })
return next()
})