A plugin for oRPC that compresses response bodies to reduce bandwidth usage.
Scanned 9/12/2026
Install to Claude Code
npx -y skills add ali-master/skills --skill orpc-compression --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Orpc Compression?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/ali-master-orpc-compression)More formats (shields.io, HTML) on the badges page.
---
name: oRPC Compression Plugin
description: A plugin for oRPC that compresses response bodies to reduce bandwidth usage.
license: MIT
metadata:
author: Ali Torki
homepage: https://github.com/ali-master
version: "1.0.0"
---
# Compression Plugin
The **Compression Plugin** compresses response bodies to reduce bandwidth usage and improve performance.
## Import
```ts
import { CompressionPlugin } from '@orpc/server/node'
import { CompressionPlugin } from '@orpc/server/fetch'
```
## Setup
```ts
const handler = new RPCHandler(router, {
plugins: [new CompressionPlugin()],
})
```
> 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!