0.0.2 • Published 5 years ago

kindi v0.0.2

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

Kindi

experimental

Known Vulnerabilities

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;
            }`)
        }
    })
)