npx skillsauth add hk-vk/skills orpcInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Typesafe APIs Made Simple 🪄
Easy to build APIs that are end-to-end type-safe and adhere to OpenAPI standards
Define Contract: Learn how to define a contract for contract-first development in oRPC
Implement Contract: Learn how to implement a contract for contract-first development in oRPC
Router to Contract: Learn how to convert a router into a contract, safely export it, and prevent exposing internal details to the client.
HTTP: How to use oRPC over HTTP?
Websocket: How to use oRPC over WebSocket?
Message Port: Using oRPC with Message Ports
Astro Adapter: Use oRPC inside an Astro project
Browser Adapter: Type-safe communication between browser scripts using Message Port Adapter
Electron Adapter: Use oRPC inside an Electron project
Elysia Adapter: Use oRPC inside an Elysia project
Express.js Adapter: Use oRPC inside an Express.js project
Fastify Adapter: Use oRPC inside an Fastify project
H3 Adapter: Use oRPC inside an H3 project
Hono Adapter: Use oRPC inside an Hono project
Next.js Adapter: Use oRPC inside an Next.js project
Nuxt.js Adapter: Use oRPC inside an Nuxt.js project
React Native Adapter: Use oRPC inside a React Native project
Remix Adapter: Use oRPC inside an Remix project
Solid Start Adapter: Use oRPC inside a Solid Start project
Svelte Kit Adapter: Use oRPC inside an Svelte Kit project
TanStack Start Adapter: Use oRPC inside a TanStack Start project
Web Workers Adapter: Enable type-safe communication with Web Workers using oRPC.
Worker Threads Adapter: Enable type-safe communication between Node.js Worker Threads using oRPC.
CORS Plugin: CORS Plugin for oRPC
Request Headers Plugin: Request Headers Plugin for oRPC
Response Headers Plugin: Response Headers Plugin for oRPC
Request Validation Plugin: A plugin that blocks invalid requests before they reach your server. Especially useful for applications that rely heavily on server-side validation.
Response Validation Plugin: A plugin that validates server responses against the contract schema to ensure that the data returned from your server matches the expected types defined in your contract.
Hibernation Plugin: A plugin to fully leverage Hibernation APIs for your ORPC server.
Dedupe Requests Plugin: Prevents duplicate requests by deduplicating similar ones to reduce server load.
Batch Requests Plugin: A plugin for oRPC to batch requests and responses.
Client Retry Plugin: A plugin for oRPC that enables retrying client calls when errors occur.
Retry After Plugin: A plugin for oRPC that automatically retries requests based on server Retry-After headers.
Rethrow Handler Plugin: A plugin to catch and rethrow specific errors during request handling instead of handling them in the oRPC error flow.
Compression Plugin: A plugin for oRPC that compresses response bodies.
Body Limit Plugin: A plugin for oRPC to limit the request body size.
Simple CSRF Protection Plugin: Add basic Cross-Site Request Forgery (CSRF) protection to your oRPC application. It helps ensure that requests to your procedures originate from JavaScript code, not from other sources like standard HTML forms or direct browser navigation.
Strict GET Method Plugin: Enhance security by ensuring only procedures explicitly marked to accept GET requests can be called using the HTTP GET method for RPC Protocol. This helps prevent certain types of Cross-Site Request Forgery (CSRF) attacks.
Pino Integration: Integrate oRPC with Pino for structured logging and request tracking.
Base64Url Helpers: Functions to encode and decode base64url strings, a URL-safe variant of base64 encoding.
Cookie Helpers: Functions for managing HTTP cookies in web applications.
Encryption Helpers: Functions to encrypt and decrypt sensitive data using AES-GCM.
Form Data Helpers: Utilities for parsing form data and handling validation errors with bracket notation support.
Publisher: Listen and publish events with resuming support in oRPC
Rate Limit: Rate limiting features for oRPC with multiple adapters support.
Signing Helpers: Functions to cryptographically sign and verify data using HMAC-SHA256.
Server-Side Clients: Call your oRPC procedures in the same environment as your server like native functions.
Client-Side Clients: Call your oRPC procedures remotely as if they were local functions.
Error Handling in oRPC Clients: Learn how to handle errors in a type-safe way in oRPC clients.
Event Iterator in oRPC Clients: Learn how to use event iterators in oRPC clients.
RPCLink: Details on using RPCLink in oRPC clients.
DynamicLink: Dynamically switch between multiple oRPC's links.
AI SDK Integration: Seamlessly use AI SDK inside your oRPC projects without any extra overhead.
Better Auth Integration: Seamlessly use Better Auth inside your oRPC projects without any extra overhead.
Durable Iterator Integration: Extends Event Iterator with durable event streams, automatic reconnections, and event recovery through a separate streaming service.
Hey API Integration: Easily convert a Hey API generated client into an oRPC client to take full advantage of the oRPC ecosystem.
OpenTelemetry Integration: Seamlessly integrate oRPC with OpenTelemetry for distributed tracing
Pinia Colada Integration: Seamlessly integrate oRPC with Pinia Colada
Pino Integration: Integrate oRPC with Pino for structured logging and request tracking.
React SWR Integration: Integrate oRPC with React SWR for efficient data fetching and caching.
Sentry Integration: Integrate oRPC with Sentry for error tracking and performance monitoring.
Tanstack Query Integration: Seamlessly integrate oRPC with Tanstack Query
Implement Contract in NestJS: Seamlessly implement oRPC contracts in your NestJS projects.
tRPC Integration: Use oRPC features in your tRPC applications.
Tanstack Query Integration: Seamlessly integrate oRPC with Tanstack Query
Tanstack Query Integration For React: Seamlessly integrate oRPC with Tanstack Query for React
Tanstack Query Integration For Vue: Seamlessly integrate oRPC with Tanstack Query for Vue
Tanstack Query Integration For Solid: Seamlessly integrate oRPC with Tanstack Query for Solid
Tanstack Query Integration For Svelte: Seamlessly integrate oRPC with Tanstack Query for Svelte
OpenAI Streaming Example: Combine oRPC with the OpenAI Streaming API to build a chatbot
Dedupe Middleware: Enhance oRPC middleware performance by avoiding redundant executions.
Monorepo Setup: The most efficient way to set up a monorepo with oRPC
No Throw Literal: Always throw Error instances instead of literal values.
Optimize Server-Side Rendering (SSR) for Fullstack Frameworks: Optimize SSR performance in Next.js, SvelteKit, and other frameworks by using oRPC to make direct server-side API calls, avoiding unnecessary network requests.
Building Custom Plugins: Create powerful custom plugins to extend oRPC handlers and links with interceptors.
Exceeds the Maximum Length Problem: How to address the Exceeds the Maximum Length Problem in oRPC.
Extend Body Parser: Extend the body parser for more efficient handling of large payloads, extend the data types.
Publish Client to NPM: How to publish your oRPC client to NPM for users to consume your APIs as an SDK.
RPC JSON Serializer: Extend or override the standard RPC JSON serializer.
RPC Protocol: Learn about the RPC protocol used by RPCHandler.
SuperJson: Replace the default oRPC RPC serializer with SuperJson.
Testing & Mocking: How to test and mock oRPC routers and procedures?
Validation Errors: Learn about oRPC's built-in validation errors and how to customize them.
Migrating from tRPC: A comprehensive guide to migrate your tRPC application to oRPC
OpenAPI Reference Plugin (Swagger/Scalar): A plugin that serves API reference documentation and the OpenAPI specification for your API.
Smart Coercion Plugin: Automatically converts input values to match schema types without manually defining coercion logic.
Zod Smart Coercion: A refined alternative to z.coerce that automatically converts inputs to the expected type without modifying the input schema.
OpenAPILink: Details on using OpenAPILink in oRPC clients.
Implement Contract in NestJS: Seamlessly implement oRPC contracts in your NestJS projects.
tRPC Integration: Use oRPC features in your tRPC applications.
Customizing Error Response Format: Learn how to customize the error response format in oRPC OpenAPI to match your application's requirements and improve client compatibility.
Disabling Output Validation: Learn how to disable output validation in oRPC procedures for improved performance while maintaining OpenAPI specification generation.
Expanding Type Support for OpenAPI Link: Learn how to extend OpenAPILink to support additional data types beyond JSON's native capabilities using the Response Validation Plugin and schema coercion.
OpenAPI JSON Serializer: Extend or override the standard OpenAPI JSON serializer.
Redirect Response: Standard HTTP redirect response in oRPC OpenAPI.
Overview of Mini oRPC: A brief introduction to Mini oRPC, a simplified version of oRPC designed for learning purposes.
Procedure Builder in Mini oRPC: Learn how Mini oRPC's procedure builder provides an excellent developer experience for defining type-safe procedures.
Server-side Client in Mini oRPC: Learn how to turn a procedure into a callable function in Mini oRPC, enabling server-side client functionality.
Client-side Client in Mini oRPC: Learn how to implement remote procedure calls (RPC) on the client side in Mini oRPC.
Beyond the Basics of Mini oRPC: Explore advanced features you can implement in Mini oRPC.
Bracket Notation: Represent structured data in limited formats such as URL queries and form data.
Comparison: How is oRPC different from other RPC or REST solutions?
Context: Understanding context in oRPC
Ecosystem: oRPC ecosystem & community resources
Error Handling: Manage errors in oRPC using both traditional and type‑safe strategies.
Event Iterator (SSE): Learn how to streaming responses, real-time updates, and server-sent events using oRPC.
File Upload and Download: Learn how to upload and download files using oRPC.
Getting Started: Quick guide to oRPC
Getting Started with OpenAPI: Quick guide to OpenAPI in oRPC
Input/Output Structure: Control how input and output data is structured in oRPC
Metadata: Enhance your procedures with metadata.
Middleware: Understanding middleware in oRPC
OpenAPI Error Handling: Handle errors in your OpenAPI-compliant oRPC APIs
OpenAPI Handler: Comprehensive Guide to the OpenAPIHandler in oRPC
OpenAPI Routing: Configure procedure routing with oRPC.
OpenAPI Specification: Generate OpenAPI specifications for oRPC with ease.
Playgrounds: Interactive development environments for exploring and testing oRPC functionality.
Procedure: Understanding procedures in oRPC
Router: Understanding routers in oRPC
RPC Handler: Comprehensive Guide to the RPCHandler in oRPC
Scalar (Swagger): Create a beautiful API client for your oRPC effortlessly.
Server Action: Integrate oRPC procedures with React Server Actions
Reference these resources when working with oRPC.
documentation
Dockhand documentation and resources. Use this skill when working with Dockhand or when the user mentions dockhand.
development
Element Plus - A Vue 3 based component library documentation and resources. Use this skill when working with Element Plus - A Vue 3 based component library or when the user mentions element plus - a vue 3 based component library.
documentation
Documentation for LangSmith, Fleet, and our open source packages.
testing
To get your plan id, you need to first create a plan in the **Manage Pricing** section on your whop page.