0.8.10 • Published 9 months ago

@xmldom/xmldom v0.8.10

Weekly downloads
-
License
MIT
Repository
github
Last release
9 months ago

@xmldom/xmldom

Since version 0.7.0 this package is published to npm as @xmldom/xmldom and no longer as xmldom, because we are no longer able to publish xmldom.
For better readability in the docs we will continue to talk about this library as "xmldom".

license(MIT) npm snyk.io package health bug issues help-wanted issues Mutation report

xmldom is a javascript ponyfill to provide the following APIs that are present in modern browsers to other runtimes:

  • convert an XML string into a DOM tree
    new DOMParser().parseFromString(xml, mimeType) => Document
  • create, access and modify a DOM tree
    new DOMImplementation().createDocument(...) => Document
  • serialize a DOM tree back into an XML string
    new XMLSerializer().serializeToString(node) => string

The target runtimes xmldom supports are currently Node >= v10 (ES5) and Rhino (not tested as part of CI).

When deciding how to fix bugs or implement features, xmldom tries to stay as close as possible to the various related specifications/standards.
As indicated by the version starting with 0., this implementation is not feature complete and some implemented features differ from what the specifications describe.
Issues and PRs for such differences are always welcome, even when they only provide a failing test case.

This project was forked from it's original source in 2019, more details about that transition can be found in the CHANGELOG.

Usage

Install:

npm install @xmldom/xmldom

Example:

In NodeJS

const { DOMParser, XMLSerializer } = require('@xmldom/xmldom')

const source = `<xml xmlns="a">
	<child>test</child>
	<child/>
</xml>`

const doc = new DOMParser().parseFromString(source, 'text/xml')

const serialized = new XMLSerializer().serializeToString(doc)

Note: in Typescript ~and ES6~(see #316) you can use the import approach, as follows:

import { DOMParser } from '@xmldom/xmldom'

API Reference

  • DOMParser:

    	```javascript
    	parseFromString(xmlsource,mimeType)
    	```
    	* **options extension** _by xmldom_ (not DOM standard!!)
    
    	```javascript
    	//added the options argument
    	new DOMParser(options)
    
    	//errorHandler is supported
    	new DOMParser({
    		/**
    		 * locator is always need for error position info
    		 */
    		locator:{},
    		/**
    		 * you can override the errorHandler for xml parser
    		 * @link http://www.saxproject.org/apidoc/org/xml/sax/ErrorHandler.html
    		 */
    		errorHandler:{warning:function(w){console.warn(w)},error:callback,fatalError:callback}
    		//only callback model
    		//errorHandler:function(level,msg){console.log(level,msg)}
    	})
    	
    	```
  • XMLSerializer

    	```javascript
    	serializeToString(node)
    	```

DOM level2 method and attribute:

  • Node

    readonly class properties (aka NodeType),
    these can be accessed from any Node instance node:
    if (node.nodeType === node.ELEMENT_NODE) {...

    1. ELEMENT_NODE (1)
    2. ATTRIBUTE_NODE (2)
    3. TEXT_NODE (3)
    4. CDATA_SECTION_NODE (4)
    5. ENTITY_REFERENCE_NODE (5)
    6. ENTITY_NODE (6)
    7. PROCESSING_INSTRUCTION_NODE (7)
    8. COMMENT_NODE (8)
    9. DOCUMENT_NODE (9)
    10. DOCUMENT_TYPE_NODE (10)
    11. DOCUMENT_FRAGMENT_NODE (11)
    12. NOTATION_NODE (12)

    attribute:

    • nodeValue | prefix

    readonly attribute:

    • nodeName | nodeType | parentNode | childNodes | firstChild | lastChild | previousSibling | nextSibling | attributes | ownerDocument | namespaceURI | localName

    method:

    • insertBefore(newChild, refChild)
    • replaceChild(newChild, oldChild)
    • removeChild(oldChild)
    • appendChild(newChild)
    • hasChildNodes()
    • cloneNode(deep)
    • normalize()
    • isSupported(feature, version)
    • hasAttributes()
  • DOMException

    extends the Error type thrown as part of DOM API.

    readonly class properties:

    • INDEX_SIZE_ERR (1)
    • DOMSTRING_SIZE_ERR (2)
    • HIERARCHY_REQUEST_ERR (3)
    • WRONG_DOCUMENT_ERR (4)
    • INVALID_CHARACTER_ERR (5)
    • NO_DATA_ALLOWED_ERR (6)
    • NO_MODIFICATION_ALLOWED_ERR (7)
    • NOT_FOUND_ERR (8)
    • NOT_SUPPORTED_ERR (9)
    • INUSE_ATTRIBUTE_ERR (10)
    • INVALID_STATE_ERR (11)
    • SYNTAX_ERR (12)
    • INVALID_MODIFICATION_ERR (13)
    • NAMESPACE_ERR (14)
    • INVALID_ACCESS_ERR (15)

    attributes:

    • code with a value matching one of the above constants.
  • DOMImplementation

    method:

    • hasFeature(feature, version)
    • createDocumentType(qualifiedName, publicId, systemId)
    • createDocument(namespaceURI, qualifiedName, doctype)
  • Document : Node

    readonly attribute:

    • doctype | implementation | documentElement

    method:

    • createElement(tagName)
    • createDocumentFragment()
    • createTextNode(data)
    • createComment(data)
    • createCDATASection(data)
    • createProcessingInstruction(target, data)
    • createAttribute(name)
    • createEntityReference(name)
    • getElementsByTagName(tagname)
    • importNode(importedNode, deep)
    • createElementNS(namespaceURI, qualifiedName)
    • createAttributeNS(namespaceURI, qualifiedName)
    • getElementsByTagNameNS(namespaceURI, localName)
    • getElementById(elementId)
  • DocumentFragment : Node

  • Element : Node

    readonly attribute:

    • tagName

    method:

    • getAttribute(name)
    • setAttribute(name, value)
    • removeAttribute(name)
    • getAttributeNode(name)
    • setAttributeNode(newAttr)
    • removeAttributeNode(oldAttr)
    • getElementsByTagName(name)
    • getAttributeNS(namespaceURI, localName)
    • setAttributeNS(namespaceURI, qualifiedName, value)
    • removeAttributeNS(namespaceURI, localName)
    • getAttributeNodeNS(namespaceURI, localName)
    • setAttributeNodeNS(newAttr)
    • getElementsByTagNameNS(namespaceURI, localName)
    • hasAttribute(name)
    • hasAttributeNS(namespaceURI, localName)
  • Attr : Node

    attribute:

    • value

    readonly attribute:

    • name | specified | ownerElement
  • NodeList

    readonly attribute:

    • length

    method:

    • item(index)
  • NamedNodeMap

    readonly attribute:

    • length

    method:

    • getNamedItem(name)
    • setNamedItem(arg)
    • removeNamedItem(name)
    • item(index)
    • getNamedItemNS(namespaceURI, localName)
    • setNamedItemNS(arg)
    • removeNamedItemNS(namespaceURI, localName)
  • CharacterData : Node

    method:

    • substringData(offset, count)
    • appendData(arg)
    • insertData(offset, arg)
    • deleteData(offset, count)
    • replaceData(offset, count, arg)
  • Text : CharacterDatamethod:
    • splitText(offset)
  • CDATASection
  • Comment : CharacterData
  • DocumentTypereadonly attribute:
    • name | entities | notations | publicId | systemId | internalSubset
  • Notation : Nodereadonly attribute:
    • publicId | systemId
  • Entity : Nodereadonly attribute:
    • publicId | systemId | notationName
  • EntityReference : Node
  • ProcessingInstruction : Node

    attribute:

    • data readonly attribute:
    • target

DOM level 3 support:

  • Node

    attribute:

    • textContent

    method:

    • isDefaultNamespace(namespaceURI)
    • lookupNamespaceURI(prefix)

DOM extension by xmldom

  • Node Source position extension; attribute:
    • lineNumber //number starting from 1
    • columnNumber //number starting from 1

Specs

The implementation is based on several specifications:

Overview of related specifications and their relations

DOM Parsing and Serialization

From the W3C DOM Parsing and Serialization (WD 2016) xmldom provides an implementation for the interfaces:

  • DOMParser
  • XMLSerializer

Note that there are some known deviations between this implementation and the W3 specifications.

Note: The latest version of this spec has the status "Editors Draft", since it is under active development. One major change is that the definition of the DOMParser interface has been moved to the HTML spec

DOM

The original author claims that xmldom implements DOM Level 2 in a "fully compatible" way and some parts of DOM Level 3, but there are not enough tests to prove this. Both Specifications are now superseded by the DOM Level 4 aka Living standard wich has a much broader scope than xmldom.

xmldom implements the following interfaces (most constructors are currently not exposed):

  • Attr
  • CDATASection
  • CharacterData
  • Comment
  • Document
  • DocumentFragment
  • DocumentType
  • DOMException (constructor exposed)
  • DOMImplementation (constructor exposed)
  • Element
  • Entity
  • EntityReference
  • LiveNodeList
  • NamedNodeMap
  • Node (constructor exposed)
  • NodeList
  • Notation
  • ProcessingInstruction
  • Text

more details are available in the (incomplete) API Reference section.

HTML

xmldom does not have any goal of supporting the full spec, but it has some capability to parse, report and serialize things differently when "detecting HTML" (by checking the default namespace). There is an upcoming change to better align the implementation with the latest specs, related to https://github.com/xmldom/xmldom/issues/203.

SAX, XML, XMLNS

xmldom has an own SAX parser implementation to do the actual parsing, which implements some interfaces in alignment with the Java interfaces SAX defines:

  • XMLReader
  • DOMHandler

There is an idea/proposal to make it possible to replace it with something else in https://github.com/xmldom/xmldom/issues/55

plistfork-appcenter-cli@pnp/cli-microsoft365@toemmsche/cpeediff@ionic/e2efindxooshiejitsi-meet-rnreact-native-jitsi-meet-libdocx-node@infinitebrahmanuniverse/nolb-_xm@kbox/epubjslstoljitsi-meet-react-native-rocketxsd-parserjsii-rosettaliusc-creatorsfdx-hardis@everything-registry/sub-chunk-1031@elweday/astro-cached-icon@manuth/woltlab-compilerpassport-saml-encrypted@nearbyy/pdf@vijhhh2/saml2-js@gracious.tech/fetch-collector@hello-label/common-libs@hello-label/common-web-libs@headspinio/appium-roku-driver@here/cli@hso/d365-cli@hpcc-js/comms@geeboo/epub@gswl/laya@gweninterpreter/gwen-webreact-native-sdk-v2@evisa123/mammoth@hiveio/content-renderer@hussam-001/plugins-slateews-javascript-apiexifreaderexl-touchnet-connectorfatfattony-pdf2json@infomaker/xml-handler@igormadeira/mammoth@idationtech/svg2ttf@eagleoutice/flowr@forsee/blockly@foxden/saml-node@elastic.io/saml2-js@finviet-jsrpt/jsrpt-docx@finviet-jsrpt/jsrpt-exceljs@finviet-jsrpt/jsrpt-pptx@finviet-jsrpt/jsrpt-xlsx@flatfishjs/cli@fmidev/smartmet-alert-client@flat/in-app-purchase@flawcra/translate-tools-core@gdin/mammoth@goberman/saml2-js@geolytix/saml2-js@gianfrancoms/danger-plugin-junit@dusty211/pdf2json@esmkit/passport-saml@entryscape/entrystore-js@expo/plist@ephox/oxide-icons-tools@emrio/j-pdfjson@enconvo/officeparser@fast-horse/article-extractor@fdmediagroep/fd-article-xml-json@fdmg/article-xml-json@in2tec/plugins-slate@infineon/infineon-icons@jmmanzano/sepa@jitsi/react-native-sdk@kehila/react-page-plugins-slate@ksolotl/mammoth@lucasadrianof/node-saml@lit/localize-tools@maarekj/reason-form-gen@mablhq/mabl-clisvg2ttfsvg2ttf2svg-spritemap-webpack-pluginsvg-spritesvg-as-symbol-loadersvg-ttf-generatorubl-builder@piranna/rpc@pylonide/jsdavvector-drawable-svgjasmine-reportersivy-nestjs@pie-framework/mathml-to-latexiobroker.mydlink@pixi/webworker@pixi/nodeislandis-login@pz-mxu/release-please@quadrio/node-saml@quadrio/xml-encryption
0.8.9

9 months ago

0.7.13

9 months ago

0.7.12

9 months ago

0.9.0-beta.9

9 months ago

0.9.0-beta.11

9 months ago

0.9.0-beta.10

9 months ago

0.8.10

9 months ago

0.7.11

11 months ago

0.8.8

11 months ago

0.9.0-beta.7

11 months ago

0.9.0-beta.8

10 months ago

0.7.10

1 year ago

0.8.7

1 year ago

0.7.9

1 year ago

0.9.0-beta.1

2 years ago

0.8.5

1 year ago

0.9.0-beta.3

2 years ago

0.7.6

2 years ago

0.8.4

1 year ago

0.9.0-beta.2

2 years ago

0.7.8

1 year ago

0.9.0-beta.5

1 year ago

0.8.6

1 year ago

0.7.7

1 year ago

0.9.0-beta.4

1 year ago

0.9.0-beta.6

1 year ago

0.8.3

2 years ago

0.8.2

2 years ago

0.8.1

2 years ago

0.8.0

2 years ago

0.7.5

3 years ago

0.7.4

3 years ago

0.7.3

3 years ago

0.7.2

3 years ago

0.7.1

3 years ago

0.7.0

3 years ago