dom-stream
v3.0.1
Published
stream a dom element and it's updates into a dom element container
Downloads
7
Maintainers
Readme
dom-stream
stream a dom element and it's updates into a dom element container
usage
npm install dom-stream
var bel = require('bel')
var domstream = require('dom-stream')
function demoComponent (opts) {
opts || (opts = {})
opts.placeholder = bel`<div class='loading'>...</div>` // optional
var el$ = domstream(opts) // el$ is a read stream AND dom element
el$.on('data', function (el) { console.log('dom element update', el) })
setTimeout(next, 500, 0) // update dom element el$
return el$
function next (i) { el$.push(render(i)); setTimeout(next, 500, i++) }
function render () { return bel`<div>update ${i}</div>` }
}
var el$ = demoComponent()
document.body.appendChild(el$)