Package Exports
- html-dom-parser
- html-dom-parser/index.js
- html-dom-parser/lib/html-to-dom-client.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (html-dom-parser) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
html-dom-parser
An HTML to DOM parser that works on both the server and client.
Installation
$ npm html-dom-parserUsage
var Parser = require('html-dom-parser');
Parser('<p>Hello, world!</p>');Output:
[ { type: 'tag',
name: 'p',
attribs: {},
children:
[ { data: 'Hello, world!',
type: 'text',
next: null,
prev: null,
parent: [Circular] } ],
next: null,
prev: null,
parent: null } ]The server parser is a wrapper of htmlparser2's parseDOM() and the client parser uses the browser's DOM API to mimic the output of the server parser.
Testing
$ git clone https://github.com/remarkablemark/html-dom-parser.git
$ npm install
$ npm run lint
$ npm test