$ cnpm install nano-dom
A light DOM implementation that can be used to test DOM modification on the server-side. This package contains a simple HTML parser to convert the HTML source code to a DOM structure. It provides only the most basic DOM API to be still useful.
$ npm i nano-dom -D
import Document from 'nano-dom';
const document = new Document('<div class="greeting">Hello world!</div>');
console.log(document.querySelector('.greeting').innerHTML); // Hello world!
You can configure which custom tags are allowed to be self-closing ones. If not configured, you may have to close them explicitly.
import { options }, Document from 'nano-dom';
options.customSelfClosingTags = ['chicken', 'run'];
const document = new Document(`
<div class="yard">
<chicken name="Prillan"/>
<my-non-self-closing>text content</my-non-self-closing>
<run speed="fast"/>
</div>
`);
Copyright 2014 - 2016 © taobao.org |