This is a Kobweb project instantiated from the examples/todo
template.
The purpose of this project is to showcase a minimal Todo app, demonstrating:
- a simple, reactive, single-page web app, making use of both Silk UI and Compose for Web
- API endpoints (e.g. for adding, removing, and fetching items)
- how to share types across client and server (see
TodoItem
which has text and an ID value)
I'd like to give credit to https://blog.upstash.com/nextjs-todo for sharing the Next.js version.
To run the sample, simply enter the following commands in the terminal:
$ cd site
$ kobweb run
and open http://localhost:8080 with your browser to see the result.