1.0.1 • Published 4 years ago

ts-hyperscript-helpers v1.0.1

Weekly downloads
4
License
MIT
Repository
github
Last release
4 years ago

TS HyperScript-Helpers

Build Status

About

This is a generalized take on Cycle.js HyperScript-Helpers. It uses its logic but it allows for to use any HyperScript wrapper.

Example Usage

import {h} from 'your-favorite-hyperscript-wrapper'
import {patch} from 'your-favorite-vdom'
import {htmlhh} from 'ts-hyperscript-helpers'

const html = htmlhh(h)
const {head, body, h1, title} = html

const page = html([
  head([
    title('Hey!')
  ]),
  body([
    h1('Hello World!')
  ])
])

patch(document.querySelector('html'), page)
1.0.1

4 years ago

1.0.0

7 years ago