Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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 tropica

proc main =
var count = newSignal(0)

t "div":
t "p":
"count: " {count}
t "button" {
"on:click": proc() = count := count() + 1
}:
"click here!"
```