Public
Like
To-Do-List
Val Town is a collaborative website to build and scale JavaScript apps.
Deploy APIs, crons, & store data – all from the browser, and deployed in miliseconds.
A full-stack to-do list application built with Hono backend and React frontend.
- ✅ Add new tasks
- ✅ Mark tasks as complete/incomplete
- ✅ Delete tasks
- ✅ Persistent storage with SQLite
- ✅ Clean, responsive UI with TailwindCSS
├── backend/
│ ├── database/
│ │ ├── migrations.ts # Database schema
│ │ └── queries.ts # Database operations
│ ├── routes/
│ │ └── todos.ts # Todo API routes
│ └── index.ts # Main server entry point
├── frontend/
│ ├── components/
│ │ ├── App.tsx # Main app component
│ │ ├── TodoForm.tsx # Add todo form
│ │ ├── TodoItem.tsx # Individual todo item
│ │ └── TodoList.tsx # Todo list container
│ ├── index.html # HTML template
│ └── index.tsx # Frontend entry point
├── shared/
│ └── types.ts # Shared TypeScript types
└── README.md
GET /api/todos
- Get all todosPOST /api/todos
- Create a new todoPUT /api/todos/:id
- Update a todoDELETE /api/todos/:id
- Delete a todo
The app is automatically deployed and accessible via the HTTP trigger. Simply visit the URL to start managing your tasks!