Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 663 Bytes

README.md

File metadata and controls

14 lines (10 loc) · 663 Bytes

universal-dom-parser

Usage

Make sure that whatever build system you are using (Webpack etc) is honoring the browser field in package.json. Then import the library and use it the same way you would use the browser native DOMParser.

let DOMParser = require('universal-dom-parser');
let parser = new DOMParser();
let doc = parser.parseFromString(`<html><body>Precious website</body></html>`, 'text/html');

Implementation