brisky

1.3.7 • Public • Published

brisky

Build Status js-standard-style npm version Coverage Status

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))

Package Sidebar

Install

npm i brisky

Weekly Downloads

1

Version

1.3.7

License

ISC

Last publish

Collaborators

  • vigour-io