A mobile-first, collaborative shopping list for friends and family. No accounts, no sign-in β anyone with the link sees and edits the same list.
All endpoints on main.ts under /api, returning the full item list as JSON.
| Method | Path | Body | Effect |
|---|---|---|---|
| GET | /api | β | List items |
| POST | /api | {"name": "Milk"} | Add an item |
| PATCH | /api | {"id": 1, "done": true} | Check/uncheck |
| DELETE | /api | {"id": 1} | Remove an item |