minidom v1.0.0
minidom
A small JavaScript DOM. Implements DOM level 1, with textContent from level 3
and innerHTML and outerHTML getters. Only supports HTML documents.
Usage
var minidom = require("minidom");
var document = minidom('<!doctype><html><head><title>Hello</title><body><h1>Hi!</h1></body></html>');
expect(document.getElementsByTagName("h1")[0].textContent).toEqual("Hi!");You can also access the DOM implementation used internally:
var dom = require("minidom/dom");
var document = minidom();
expect(document instanceof dom.Node).toBeTruthy();Differences with JSDom
| JSDom | minidom | |
|---|---|---|
| Runs Javascript in the page context | Yes | No |
| CSSOM | Yes | No |
| Loads remote resources | Yes | No |
| HTML5 parsing algorithm | No | Yes* |
| Runs in the browser | No | Yes** |
| Awesome | Yes | Yes |
Basically minidom does a lot less, but often it's all you need.
* This means that the DOM representation is the same as you would get in the browser, but may not be suitable if you wish to preserve as much of the original formatting as possible. For example parsing <body>hi</body><head><title>hello</title> with minidom results in a document that looks like <html><head></head><body>hi<title>hello</title></body></html>, where as JSDom outputs <html><body>hi</body><head><title>hello</title></head></html>.
** This is probably very cool, although I have no idea why.
Supported API
Properties marked ⃠ are read-only
Node
ELEMENT_NODEATTRIBUTE_NODETEXT_NODECDATA_SECTION_NODEENTITY_REFERENCE_NODEENTITY_NODEPROCESSING_INSTRUCTION_NODECOMMENT_NODEDOCUMENT_NODEDOCUMENT_TYPE_NODEDOCUMENT_FRAGMENT_NODENOTATION_NODEchildren⃠nodeValueparentNode⃠nodeName⃠attributes⃠firstChild⃠ownerDocument⃠readonly⃠lastChild⃠childNodes⃠nextSibling⃠previousSibling⃠insertBefore(/* Node */ newChild, /* Node*/ refChild)replaceChild(/* Node */ newChild, /* Node */ oldChild)removeChild(/* Node */ oldChild)appendChild(/* Node */ newChild)hasChildNodes()cloneNode(/* bool */ deep, fn)normalize()toString()raise(type, message, data)textContent
Document (inherits from Node)
nodeTypecontentType⃠doctypedocumentElement⃠implementationnodeName⃠tagName⃠nodeValueattributes⃠ownerDocument⃠readonly⃠createElement(/* string */ tagName)createDocumentFragment()createTextNode(/* string */ data)createComment(/* string */ data)createCDATASection(/* string */ data)createProcessingInstruction(/* string */ target, /* string */ data)createAttribute(/* string */ name)createEntityReference(/* string */ name)createEntityNode(/* string */ name)createNotationNode(/* string */ name, /* string */ publicId, /* string */ systemId)appendChild(/* Node */ arg)removeChild(/* Node */ arg)getElementsByTagName(/* string */ name)outerHTML⃠
Element (inherits from Node)
nodeValuetagName⃠nodeTypeattributes⃠getAttribute(/* string */ name)setAttribute(/* string */ name, /* string */ value)removeAttribute(/* string */ name)getAttributeNode(/* string */ name)setAttributeNode(/* Attr */ newAttr)removeAttributeNode(/* Attr */ oldAttr)getElementsByTagName(/* string */ name)outerHTML⃠innerHTML⃠
Thanks
Made possible with large excerpts from JSDom, and the excellent parse5 implementation of the HTML5 parsing algorithm.
License
MIT license. See LICENSE.md for details.