Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ikasoba/tropica
a tiny frontend framework for nim
https://github.com/ikasoba/tropica
Last synced: 15 days ago
JSON representation
a tiny frontend framework for nim
- Host: GitHub
- URL: https://github.com/ikasoba/tropica
- Owner: ikasoba
- Created: 2023-02-17T07:19:18.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-03-13T10:44:16.000Z (almost 2 years ago)
- Last Synced: 2024-10-24T06:07:40.498Z (2 months ago)
- Language: Nim
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# about
tropica is a small frontend framework for nim.
it was written to create a simple web site.```nim
import tropicaproc main =
var count = newSignal(0)t "div":
t "p":
"count: " {count}
t "button" {
"on:click": proc() = count := count() + 1
}:
"click here!"
```