oRPC Express.js Adapter
Installation
SKILL.md
Express.js Adapter
Express.js integration.
Express's body-parser handles common content types and oRPC will use the parsed body. But it doesn't support Bracket Notation. Register body-parsing middleware after your oRPC middleware or only on non-oRPC routes.
Basic
import express from 'express'
import cors from 'cors'
import { RPCHandler } from '@orpc/server/node'
import { onError } from '@orpc/server'
const app = express()
app.use(cors())