0.0.1 • Published 7 years ago

html-inject-vdom v0.0.1

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

html-inject-vdom

Transform stream for injecting virtual DOM tags into html.

example:

var injectVdom = require('html-inject-vdom')

process.stdin
.pipe( injectVdom(['app', 'tabs']) )
.pipe( process.stdout )

input:

<html><head></head><body>hello</body></html>

output:

<html><head></head><body><div id="app"></div><div id="tabs"></div>hello</body></html>

cli

cat index.html | htmlinjectvdom "app" > output.html

Gotcha:

requires a head tag to be present in the src.