A personal book library management application built with Val Town.
āāā backend/
ā āāā database/
ā ā āāā migrations.ts # Database schema setup
ā ā āāā queries.ts # Database query functions
ā āāā routes/
ā ā āāā books.ts # Book CRUD API routes
ā āāā index.ts # Main Hono server
āāā frontend/
ā āāā components/
ā ā āāā App.tsx # Main React application
ā ā āāā BookCard.tsx # Individual book display
ā ā āāā BookForm.tsx # Add/edit book form
ā ā āāā SearchBar.tsx # Search and filter component
ā āāā index.html # Main HTML template
ā āāā index.tsx # Frontend entry point
ā āāā style.css # Custom styles
āāā shared/
āāā types.ts # Shared TypeScript types
GET /api/books - Get all books with optional search/filterPOST /api/books - Add a new bookPUT /api/books/:id - Update an existing bookDELETE /api/books/:id - Delete a book