···8899## ✨ Features
10101111-- **Schema-first:** Define and validate collections using any schema validator
1212- that supports [Standard Schema](https://standardschema.dev).
1111+- **Schema-first:** Define and validate collections using [Zod](https://zod.dev).
1312- **Type-safe operations:** Auto-complete and strict typings for `insert`,
1413 `find`, `update`, and `delete`.
1514- **Minimal & modular:** No decorators or magic. Just clean, composable APIs.
···30293130## 🚀 Quick Start
32313333-Examples below use Zod but any schema validator that supports
3434-[Standard Schema](https://standardschema.dev) will work.
3535-3632### 1. Define a schema
37333834```ts
3935// src/schemas/user.ts
4040-import { z } from "zod";
3636+import { z } from "@zod/zod";
41374238export const userSchema = z.object({
4339 name: z.string(),