https://github.com/funyin/kobweb-todo
https://github.com/funyin/kobweb-todo
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/funyin/kobweb-todo
- Owner: funyin
- Created: 2023-11-09T18:53:01.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-12-15T08:35:09.000Z (over 1 year ago)
- Last Synced: 2025-02-06T13:23:13.066Z (4 months ago)
- Language: Kotlin
- Size: 70.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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.