A simple todo list application built for Val Town using React, Hono, and SQLite.
├── backend/
│ ├── database/
│ │ └── queries.ts # SQLite database operations
│ └── index.ts # Hono API server
├── frontend/
│ ├── components/
│ │ └── App.tsx # Main React component
│ ├── index.html # HTML template
│ └── index.tsx # React entry point
└── shared/
└── types.ts # Shared TypeScript interfaces
GET /api/todos - Get all todosGET /api/todos/:id - Get a specific todoPOST /api/todos - Create a new todoPATCH /api/todos/:id - Update a todoDELETE /api/todos/:id - Delete a todo