Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jamen/html-to-hyperapp

Convert HTML to Hyperapp JSON.
https://github.com/jamen/html-to-hyperapp

Last synced: 17 days ago
JSON representation

Convert HTML to Hyperapp JSON.

Awesome Lists containing this project

README

        

# html-to-hyperapp

Convert HTML to Hyperapp JSON

## Install

```sh
npm i @jamen/html-to-hyperapp
```

Or use the CLI utility:

```sh
npx @jamen/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.

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

### `html-to-hyperapp [input] [output]`

Performs the function over files or stdio.

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