bun-redis
Installation
SKILL.md
Bun Redis
Redis integration with Bun using popular Redis clients.
Client Options
| Client | Best For | Install |
|---|---|---|
ioredis |
Self-hosted Redis | bun add ioredis |
@upstash/redis |
Serverless/Edge | bun add @upstash/redis |
redis |
Official Node client | bun add redis |
ioredis Setup
import Redis from "ioredis";
// Default connection
const redis = new Redis();