https://github.com/rkrupinski/parse-html
Dead simple HTML parser
https://github.com/rkrupinski/parse-html
Last synced: 4 months ago
JSON representation
Dead simple HTML parser
- Host: GitHub
- URL: https://github.com/rkrupinski/parse-html
- Owner: rkrupinski
- Created: 2014-07-28T13:16:45.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-07-28T13:28:56.000Z (almost 11 years ago)
- Last Synced: 2025-02-11T15:51:26.689Z (5 months ago)
- Language: JavaScript
- Size: 121 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
parse-html
==========
Dead simple HTML parserUsage
-----
```js
var parse = require('parse-html');parse('
aaa'); // [aaa]
```Installation
------------
```bash
$ npm install parse-html
```