kindi
v0.0.2
Published
An very opinionated PWA building tool, that values lightness and performance.
Downloads
2
Readme
Kindi
Kindi is very opinionated progressive web app library, that values lightness and performance.
Am putting together an innovative system for building progress web apps. Kindi is an experiment to produce a PWA module.
Qualities
1. Light
2. Declarative
3. Efficient
4. Expressive
Features
1. Dynamic Functional Templating.
import {h1,body} from "kindi.js"
body({},
h1({
css:`:host{
color: white;
background: blue;
}`,
text:"Example Heading",
click:elem=>{
elem.css(`:host{
color: white;
background: blue;
}`)
}
})
)