1.0.0 • Published 7 years ago

hyperframework v1.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

hyperframework

Build Status Standard - JavaScript Style Guide

Fast and light frontend framework, backed by hyperHTML :zap:

Usage

Basic

const component = require('hyperframework/component')
const mount = require('hyperframework')

const Button = component((html, text) => html`
  <button>
    ${text}
  </button>
`)

const App = component((html, data) => html`
  <section>${
    data.map(Button)
  }</section>
`)

const app = mount(App, document.body)
app(['Hello World', 'Hello There'])

setTimeout(app, 1000, ['Hello World', 'Hello There', 'Hello Again'])

License

MIT