0.1.0 • Published 6 years ago

@jamen/html-to-hyperapp v0.1.0

Weekly downloads
1
License
-
Repository
-
Last release
6 years ago

html-to-hyperapp

Convert HTML to Hyperapp JSON

Install

npm i html-to-hyperapp

Or use the CLI utility:

npx html-to-hyperapp input.html output.json

Usage

htmlToHyperapp(input, output)

Takes an input stream and output stream, where HTML comes from the input and JSON is written to the output.

htmlToHyperapp(
    fs.createReadStream('./input.html'),
    fs.createWriteStream('./output.json')
)

html-to-hyperapp [input] [output]

Performs the function over files or stdio.

$ html-to-hyperapp input.html output.json
$ cat input.html | html-to-hyperapp > output.json