Skip to content
This repository was archived by the owner on Oct 22, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion examples/ai-agent/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,9 @@ Example project demonstrating AI agent integration with [RivetKit](https://rivet

```sh
git clone https://github.com/rivet-gg/rivetkit
pnpm install
pnpm run build
cd rivetkit/examples/ai-agent
npm install
```

### Development
Expand Down
2 changes: 1 addition & 1 deletion examples/ai-agent/src/backend/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ import { registry } from "./registry";

registry.runServer({
cors: {
origin: "http://localhost:5173",
origin: "http://localhost:3000",
},
});
3 changes: 2 additions & 1 deletion examples/better-auth-external-db/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,9 @@ Example project demonstrating authentication integration with [RivetKit](https:/

```sh
git clone https://github.com/rivet-gg/rivetkit
pnpm install
pnpm run build
cd rivetkit/examples/better-auth-external-db
npm install
```

### Development
Expand Down
3 changes: 2 additions & 1 deletion examples/chat-room/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@ Example project demonstrating real-time messaging and actor state management wit

```sh
git clone https://github.com/rivet-gg/rivetkit
pnpm install
pnpm run build
cd rivetkit/examples/chat-room
npm install
```

### Development
Expand Down
2 changes: 1 addition & 1 deletion examples/chat-room/src/backend/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ import { registry } from "./registry";

registry.runServer({
cors: {
origin: "http://localhost:5173",
origin: "http://localhost:3000",
},
});
3 changes: 2 additions & 1 deletion examples/cloudflare-workers-hono/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@ Example project demonstrating Cloudflare Workers deployment with Hono router usi

```sh
git clone https://github.com/rivet-gg/rivetkit
pnpm install
pnpm run build
cd rivetkit/examples/cloudflare-workers-hono
npm install
```

### Development
Expand Down
3 changes: 2 additions & 1 deletion examples/cloudflare-workers/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@ Example project demonstrating Cloudflare Workers deployment with [RivetKit](http

```sh
git clone https://github.com/rivet-gg/rivetkit
pnpm install
pnpm run build
cd rivetkit/examples/cloudflare-workers
npm install
```

### Development
Expand Down
3 changes: 2 additions & 1 deletion examples/counter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@ Example project demonstrating basic actor state management and RPC calls with [R

```sh
git clone https://github.com/rivet-gg/rivetkit
pnpm install
pnpm run build
cd rivetkit/examples/counter
npm install
```

### Development
Expand Down
3 changes: 2 additions & 1 deletion examples/crdt/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@ Example project demonstrating real-time collaborative editing using Conflict-fre

```sh
git clone https://github.com/rivet-gg/rivetkit
pnpm install
pnpm run build
cd rivetkit/examples/crdt
npm install
```

### Development
Expand Down
2 changes: 1 addition & 1 deletion examples/crdt/src/backend/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ import { registry } from "./registry";

registry.runServer({
cors: {
origin: "http://localhost:5173",
origin: "http://localhost:3000",
},
});
3 changes: 2 additions & 1 deletion examples/database/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@ Example project demonstrating persistent data storage and real-time updates with

```sh
git clone https://github.com/rivet-gg/rivetkit
pnpm install
pnpm run build
cd rivetkit/examples/database
npm install
```

### Development
Expand Down
2 changes: 1 addition & 1 deletion examples/database/src/backend/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ import { registry } from "./registry";

registry.runServer({
cors: {
origin: "http://localhost:5173",
origin: "http://localhost:3000",
},
});
3 changes: 2 additions & 1 deletion examples/drizzle/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@ Example project demonstrating Hono web framework integration with [RivetKit](htt

```sh
git clone https://github.com/rivet-gg/rivetkit
pnpm install
pnpm run build
cd rivetkit/examples/hono
npm install
```

### Development
Expand Down
3 changes: 2 additions & 1 deletion examples/elysia/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@ Example project demonstrating Elysia web framework integration with [RivetKit](h

```sh
git clone https://github.com/rivet-gg/rivetkit
pnpm install
pnpm run build
cd rivetkit/examples/elysia
npm install
```

### Development
Expand Down
3 changes: 2 additions & 1 deletion examples/express/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@ Example project demonstrating Express web framework integration with [RivetKit](

```sh
git clone https://github.com/rivet-gg/rivetkit
pnpm install
pnpm run build
cd rivetkit/examples/express
npm install
```

### Development
Expand Down
3 changes: 2 additions & 1 deletion examples/game/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@ Example project demonstrating real-time multiplayer game mechanics with [RivetKi

```sh
git clone https://github.com/rivet-gg/rivetkit
pnpm install
pnpm run build
cd rivetkit/examples/game
npm install
```

### Development
Expand Down
2 changes: 1 addition & 1 deletion examples/game/src/backend/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ import { registry } from "./registry";

registry.runServer({
cors: {
origin: "http://localhost:5173",
origin: "http://localhost:3000",
},
});
3 changes: 2 additions & 1 deletion examples/hono-react/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@ Example project demonstrating full-stack Hono backend with React frontend integr

```sh
git clone https://github.com/rivet-gg/rivetkit
pnpm install
pnpm run build
cd rivetkit/examples/hono-react
npm install
```

### Development
Expand Down
3 changes: 2 additions & 1 deletion examples/hono/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@ Example project demonstrating Hono web framework integration with [RivetKit](htt

```sh
git clone https://github.com/rivet-gg/rivetkit
pnpm install
pnpm run build
cd rivetkit/examples/hono
npm install
```

### Development
Expand Down
3 changes: 2 additions & 1 deletion examples/rate/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@ Example project demonstrating API rate limiting with [RivetKit](https://rivetkit

```sh
git clone https://github.com/rivet-gg/rivetkit
pnpm install
pnpm run build
cd rivetkit/examples/rate
npm install
```

### Development
Expand Down
2 changes: 1 addition & 1 deletion examples/rate/src/backend/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ import { registry } from "./registry";

registry.runServer({
cors: {
origin: "http://localhost:5173",
origin: "http://localhost:3000",
},
});
3 changes: 2 additions & 1 deletion examples/raw-fetch-handler/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,9 @@ raw-fetch-handler/

```sh
git clone https://github.com/rivet-gg/rivetkit
cd rivetkit/examples/raw-fetch-handler
pnpm install
pnpm run build
cd rivetkit/examples/raw-fetch-handler
```

### Development
Expand Down
3 changes: 2 additions & 1 deletion examples/raw-websocket-handler-proxy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,9 @@ Example project demonstrating raw WebSocket handling with [RivetKit](https://riv

```sh
git clone https://github.com/rivet-gg/rivetkit
pnpm install
pnpm run build
cd rivetkit/examples/raw-websocket-handler-proxy
npm install
```

### Development
Expand Down
3 changes: 2 additions & 1 deletion examples/react/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@ Example project demonstrating full-stack Hono backend with React frontend integr

```sh
git clone https://github.com/rivet-gg/rivetkit
pnpm install
pnpm run build
cd rivetkit/examples/hono-react
npm install
```

### Development
Expand Down
3 changes: 2 additions & 1 deletion examples/redis-hono/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,9 @@ Example project demonstrating Redis persistence with Hono web framework and [Riv

```sh
git clone https://github.com/rivet-gg/rivetkit
pnpm install
pnpm run build
cd rivetkit/examples/redis-hono
npm install
```

### Development
Expand Down
3 changes: 2 additions & 1 deletion examples/redis/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,9 @@ Example project demonstrating Redis persistence and coordinate topology with [Ri

```sh
git clone https://github.com/rivet-gg/rivetkit
pnpm install
pnpm run build
cd rivetkit/examples/redis
npm install
```

### Development
Expand Down
3 changes: 2 additions & 1 deletion examples/snippets/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@ Example project demonstrating various RivetKit patterns and integrations with [R

```sh
git clone https://github.com/rivet-gg/rivetkit
pnpm install
pnpm run build
cd rivetkit/examples/snippets
npm install
```

### Development
Expand Down
3 changes: 2 additions & 1 deletion examples/starter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@ Example project demonstrating Rivet cloud platform deployment with [RivetKit](ht

```sh
git clone https://github.com/rivet-gg/rivetkit
pnpm install
pnpm run build
cd rivetkit/examples/rivet
npm install
```

### Configuration
Expand Down
3 changes: 2 additions & 1 deletion examples/stream/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@ Example project demonstrating real-time top-K stream processing with [RivetKit](

```sh
git clone https://github.com/rivet-gg/rivetkit
pnpm install
pnpm run build
cd rivetkit/examples/stream
npm install
```

### Development
Expand Down
2 changes: 1 addition & 1 deletion examples/stream/src/backend/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ import { registry } from "./registry";

registry.runServer({
cors: {
origin: "http://localhost:5173",
origin: "http://localhost:3000",
},
});
3 changes: 2 additions & 1 deletion examples/sync/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@ Example project demonstrating offline-first contact synchronization with conflic

```sh
git clone https://github.com/rivet-gg/rivetkit
pnpm install
pnpm run build
cd rivetkit/examples/sync
npm install
```

### Development
Expand Down
2 changes: 1 addition & 1 deletion examples/sync/src/backend/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ import { registry } from "./registry";

registry.runServer({
cors: {
origin: "http://localhost:5173",
origin: "http://localhost:3000",
},
});
3 changes: 2 additions & 1 deletion examples/tenant/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@ Example project demonstrating multi-tenant organization management with role-bas

```sh
git clone https://github.com/rivet-gg/rivetkit
pnpm install
pnpm run build
cd rivetkit/examples/tenant
npm install
```

### Development
Expand Down
2 changes: 1 addition & 1 deletion examples/tenant/src/backend/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ import { registry } from "./registry";

registry.runServer({
cors: {
origin: "http://localhost:5173",
origin: "http://localhost:3000",
},
});
3 changes: 2 additions & 1 deletion examples/trpc/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@ Example project demonstrating tRPC integration with [RivetKit](https://rivetkit.

```sh
git clone https://github.com/rivet-gg/rivetkit
pnpm install
pnpm run build
cd rivetkit/examples/trpc
npm install
```

### Development
Expand Down