Package Exports
- dom-parser
- dom-parser/dist/index.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 (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
dom-parser
Fast dom parser based on regexps
installation
npm install dom-parserusage
var DomParser = require('dom-parser');
var parser = new DomParser();
fs.readFile('htmlToParse.html', 'utf8', function(err, html){
if (!err){
var dom = parser.parseFromString(html);
console.log(dom.getElementById('myElement').innerHTML);
}
})API
Dom
Implemented methods:
- getElementById
- getElementsByClassName
- getElementsByTagName
- getElementsByName
Node
Implemented properties
- nodeType
- nodeName
- childNodes
- firstChild
- lastChild
- parentNode
- attributes
- innerHTML
- outerHTML
- textContent
Implemented methods
- getAttribute
- getElementById
- getElementsByClassName
- getElementsByTagName
- getElementsByName
Usage - https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
contributing
issues and pull requests are welcome!