Cli for converting html to hyperscript and the other way around.
$ npm install -g hscript$ hscript index.html
# -> h('div', ['text'])$ hscript index.js
# -> <div>text<div/>$ echo "<div>text<div/>" | hscript
# -> h('div', ['text'])$ echo "h('div', ['text'])" | hscript --html
# -> <div>text<div/>npm test