An open API service indexing awesome lists of open source software.

https://github.com/funyin/kobweb-todo


https://github.com/funyin/kobweb-todo

Last synced: 2 months ago
JSON representation

Awesome Lists containing this project

README

        

This is a [Kobweb](https://github.com/varabyte/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:

```bash
$ cd site
$ kobweb run
```

and open [http://localhost:8080](http://localhost:8080) with your browser to see the result.