JSPM

snabbdom-render

1.0.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 3
  • Score
    100M100P100Q14990F
  • License MIT

A rendering loop for snabbdom.

Package Exports

  • snabbdom-render

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (snabbdom-render) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

snabbdom-render

NPM version License Build status

A rendering loop for snabbdom.

Installation

npm install snabbdom-render

Usage

import snabbdom from 'snabbdom'
import h from 'snabbdom/h'
import render from 'snabbdom-render'

const patch = snabbdom.init([])
const tree = () => h('p', new Date().toISOString())
const root = document.getElementById('root')

const update = render(patch, tree, root)
setInterval(update, 3000)

For an example built with Redux, see examples/counter.

API

update = render(patch, tree, root)

Use patch to render the given tree on the root node.

License

MIT