# gulp-html-to-object

> The gulp plugin for the HTML parser html-to-object.

Latest version **1.1.7** (published 2017-07-27) · MIT license · 0 weekly downloads

## Install

```sh
npm install gulp-html-to-object
pnpm add gulp-html-to-object
yarn add gulp-html-to-object
bun add gulp-html-to-object
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.1.7 |
| Published | 2017-07-27 |
| First published | 2017-06-18 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Max Sandelin |
| Maintainers | themaxsandelin |
| Keywords | html parser, javascript parser, javascript, html, parser |

## Links

- npm: https://www.npmjs.com/package/gulp-html-to-object
- Repository: https://github.com/themaxsandelin/gulp-html-to-object
- Homepage: https://github.com/themaxsandelin/gulp-html-to-object#readme
- Issues: https://github.com/themaxsandelin/gulp-html-to-object/issues
- npm.io page: https://npm.io/package/gulp-html-to-object

## Dependencies (1)

- [html-to-object](https://npm.io/package/html-to-object.md) ^1.3.7

## Alternatives

- [babylon](https://npm.io/package/babylon.md) — 5.1M weekly downloads
- [csscolorparser](https://npm.io/package/csscolorparser.md) — 3.7M weekly downloads
- [expr-eval-fork](https://npm.io/package/expr-eval-fork.md) — 1.5M weekly downloads
- [@leeoniya/ufuzzy](https://npm.io/package/@leeoniya/ufuzzy.md) — 247.7K weekly downloads
- [xml-parser](https://npm.io/package/xml-parser.md) — 78.4K weekly downloads

## Recent versions

- 1.1.7 (latest) — 2017-07-27
- 1.1.6 — 2017-07-27
- 1.1.5 — 2017-07-27
- 1.1.4 — 2017-07-27
- 1.1.3 — 2017-06-30
- 1.1.2 — 2017-06-30
- 1.1.1 — 2017-06-26
- 1.1.0 — 2017-06-21
- 1.0.1 — 2017-06-18
- 1.0.0 — 2017-06-18

## README

# gulp-html-to-object
The gulp plugin of the lightweight HTML parser [html-to-object](https://npmjs.com/html-to-object).

## Install
`$ npm install --save-dev gulp-html-to-object`

## Usage
```javascript
// source file
const modal = h2o('./src/file.html');
console.log(modal);
```

```javascript
// gulpfile.js
const gulp = require('gulp');
const h2o = require('gulp-html-to-object');

gulp.task('javascript', () => {
  return gulp.src('./src/*.js')
    .pipe(h2o([options]))
    .pipe(gulp.dest('./dist'));
});
```

## License
[MIT](LICENSE) © [Max Sandelin](https://github.com/themaxsandelin)

---
_Source: https://npm.io/package/gulp-html-to-object · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
