0.1.0 • Published 6 years ago

seb-vdom v0.1.0

Weekly downloads
3
License
WTFPL
Repository
github
Last release
6 years ago

seb-vdom Build Status codecov

An implementation of virtual DOM

Description

Seb is mostly inspired by simple-virtual-dom, basically a practice of my own.

Usage

var h = seb.h // `h` helps to build vdom tree
var render = seb.render // `render` helps to render VNode to HTML document
var diff = seb.diff // `diff` helps to find differences between two trees and return the patches
var patch = seb.patch // `patch` helps to update HTML document with the patches returned by `diff`

var tree0 = h('ul', {}, [
  h('li', { key: 0 }),
  h('li', { key: 1 })
])
var tree1 = h('ul', {}, [
  h('li', { key: 1 }),
  h('li', { key: 2 }),
  h('li', { key: 0 })
])

var dom = render(tree0)
var patches = diff(tree0, tree1)
patch(dom, patches)
0.1.0

6 years ago

0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago