brisky
v1.3.7
Published
Brisky is a lightning fast js library for building state driven user interfaces.
Downloads
35
Readme
brisky
Brisky is a lightning fast universal js library for building state driven user interfaces.
It consist of multiple sub-modules, each module adding specific funcitonality
examples
Find and create examples on our example repo. A simple introduction:
const render = require('brisky/render')
const element = {
$: 'person',
foo: {
text: {
$: 'name'
}
},
bar: {
text: {
$: 'age'
}
}
}
const state = {
person: {
name: "John",
age: 24
}
}
document.appendchild(render(element, state))