client
Installation
SKILL.md
Client Development
Tech Stack
- Framework: React 18 + Vite
- Local DB: Dexie (IndexedDB wrapper) — see
src/db.ts - Styling: Tailwind CSS
- Types: Import from
@dink-derby/shared-types
Local-First Pattern
All data operations follow this flow:
- Write locally first — Update Dexie immediately
- Queue for sync — Add entry to
syncOutboxtable - Read from local — UI always reads from Dexie
- Sync in background — POST to
/syncwhen online