A pure JavaScript W3C standard-based (XML DOM Level 2 Core) `DOMParser` and `XMLSerializer` module.
Installations
npm install @xmldom/xmldom
Developer Guide
Typescript
Yes
Module System
CommonJS
Min. Node Version
>=14.6
Node Version
18.20.5
NPM Version
10.8.2
Score
99.6
Supply Chain
99.6
Quality
87
Maintenance
100
Vulnerability
100
License
Releases
Contributors
Languages
HTML (55.5%)
JavaScript (44.38%)
Handlebars (0.07%)
Shell (0.04%)
Developer
xmldom
Download Statistics
Total Downloads
872,823,118
Last Day
1,677,494
Last Week
7,475,607
Last Month
33,029,477
Last Year
387,511,685
GitHub Statistics
375 Stars
854 Commits
89 Forks
8 Watching
7 Branches
56 Contributors
Bundle Size
77.80 kB
Minified
27.65 kB
Minified + Gzipped
Package Meta Information
Latest Version
0.9.7
Package Id
@xmldom/xmldom@0.9.7
Unpacked Size
356.90 kB
Size
89.80 kB
File Count
15
NPM Version
10.8.2
Node Version
18.20.5
Publised On
19 Jan 2025
Total Downloads
Cumulative downloads
Total Downloads
872,823,118
Last day
-4.9%
1,677,494
Compared to previous day
Last week
-14.6%
7,475,607
Compared to previous week
Last month
6.4%
33,029,477
Compared to previous month
Last year
26.8%
387,511,685
Compared to previous year
Daily Downloads
Weekly Downloads
Monthly Downloads
Yearly Downloads
@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".
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 >= v14.6 (and very likely any other ES5 compatible runtime).
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:
1const { DOMParser, XMLSerializer } = require('@xmldom/xmldom') 2 3const source = `<xml xmlns="a"> 4 <child>test</child> 5 <child/> 6</xml>` 7 8const doc = new DOMParser().parseFromString(source, 'text/xml') 9 10const serialized = new XMLSerializer().serializeToString(doc)
Note: in Typescript and ES6 (see #316) you can use the import
approach, as follows:
1import { DOMParser } from '@xmldom/xmldom'
API Reference
-
1parseFromString(xmlsource, mimeType)
- options extension by xmldom (not DOM standard!!)
1// the options argument can be used to modify behavior 2// for more details check the documentation on the code or type definition 3new DOMParser(options)
-
1serializeToString(node)
DOM level2 method and attribute:
-
readonly class properties (aka
NodeType
),
these can be accessed from anyNode
instancenode
:
if (node.nodeType === node.ELEMENT_NODE) {...
ELEMENT_NODE
(1
)ATTRIBUTE_NODE
(2
)TEXT_NODE
(3
)CDATA_SECTION_NODE
(4
)ENTITY_REFERENCE_NODE
(5
)ENTITY_NODE
(6
)PROCESSING_INSTRUCTION_NODE
(7
)COMMENT_NODE
(8
)DOCUMENT_NODE
(9
)DOCUMENT_TYPE_NODE
(10
)DOCUMENT_FRAGMENT_NODE
(11
)NOTATION_NODE
(12
)
attribute:
nodeValue
|prefix
|textContent
readonly attribute:
nodeName
|nodeType
|parentNode
|parentElement
|childNodes
|firstChild
|lastChild
|previousSibling
|nextSibling
|attributes
|ownerDocument
|namespaceURI
|localName
|isConnected
|baseURI
method:
insertBefore(newChild, refChild)
replaceChild(newChild, oldChild)
removeChild(oldChild)
appendChild(newChild)
hasChildNodes()
cloneNode(deep)
normalize()
contains(otherNode)
getRootNode()
isEqualNode(otherNode)
isSameNode(otherNode)
isSupported(feature, version)
hasAttributes()
-
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.
-
method:
hasFeature(feature, version)
(deprecated)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
-
readonly attribute:
length
method:
item(index)
-
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 : CharacterData
method:
splitText(offset)
-
Comment : CharacterData
-
readonly attribute:
name
|entities
|notations
|publicId
|systemId
|internalSubset
-
Notation : Node
readonly attribute:
publicId
|systemId
-
Entity : Node
readonly attribute:
publicId
|systemId
|notationName
-
EntityReference : Node
-
ProcessingInstruction : Node
attribute:
data
readonly attribute:target
DOM level 3 support:
-
attribute:
textContent
method:
isDefaultNamespace(namespaceURI)
lookupNamespaceURI(prefix)
DOM extension by xmldom
-
[Node] Source position extension;
attribute:
lineNumber
//number starting from1
columnNumber
//number starting from1
Specs
The implementation is based on several specifications:
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. In the past, there have been multiple (even breaking) changes to align xmldom with the living standard, so if you find a difference that is not documented, any contribution to resolve the difference is very welcome (even just reporting it as an issue).
xmldom implements the following interfaces:
Attr
CDATASection
CharacterData
Comment
Document
DocumentFragment
DocumentType
DOMException
DOMImplementation
Element
Entity
EntityReference
LiveNodeList
NamedNodeMap
Node
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 it is told to parse HTML (by passing the HTML namespace).
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
Stable Version
Stable Version
0.9.7
CRITICAL
6
9.8/10
Summary
xmldom allows multiple root nodes in a DOM
Affected Versions
>= 0.9.0-beta.1, < 0.9.0-beta.4
Patched Versions
0.9.0-beta.4
9.8/10
Summary
xmldom allows multiple root nodes in a DOM
Affected Versions
>= 0.8.0, < 0.8.4
Patched Versions
0.8.4
9.8/10
Summary
xmldom allows multiple root nodes in a DOM
Affected Versions
< 0.7.7
Patched Versions
0.7.7
9.8/10
Summary
Withdrawn: Improperly Controlled Modification of Object Prototype Attributes ('Prototype Pollution') in @xmldom/xmldom and xmldom
Affected Versions
< 0.7.6
Patched Versions
0.7.6
9.8/10
Summary
Withdrawn: Improperly Controlled Modification of Object Prototype Attributes ('Prototype Pollution') in @xmldom/xmldom and xmldom
Affected Versions
>= 0.8.0, < 0.8.3
Patched Versions
0.8.3
9.8/10
Summary
Withdrawn: Improperly Controlled Modification of Object Prototype Attributes ('Prototype Pollution') in @xmldom/xmldom and xmldom
Affected Versions
= 0.9.0-beta.1
Patched Versions
0.9.0-beta.2
MODERATE
1
6.5/10
Summary
Misinterpretation of malicious XML input
Affected Versions
< 0.7.0
Patched Versions
0.7.0
Reason
no binaries found in the repo
Reason
29 out of 29 merged PRs checked by a CI test -- score normalized to 10
Reason
project has 11 contributing companies or organizations
Details
- Info: CACI-International contributor org/company found, rooseveltframework contributor org/company found, abolishmalapportionment-us contributor org/company found, bettermarks contributor org/company found, xmldom contributor org/company found, baidu contributor org/company found, MayOneUS contributor org/company found, glyphr-studio contributor org/company found, bettermarks gmbh contributor org/company found, ks-tech contributor org/company found, apple contributor org/company found,
Reason
no dangerous workflow patterns detected
Reason
update tool detected
Details
- Info: detected update tool: RenovateBot: renovate.json:1
Reason
project is fuzzed
Details
- Info: OSSFuzz integration found
Reason
license file detected
Details
- Info: project has a license file: LICENSE:0
- Info: FSF or OSI recognized license: MIT License: LICENSE:0
Reason
30 commit(s) and 8 issue activity found in the last 90 days -- score normalized to 10
Reason
security policy file detected
Details
- Info: security policy file detected: SECURITY.md:1
- Info: Found linked content: SECURITY.md:1
- Info: Found disclosure, vulnerability, and/or timelines in security policy: SECURITY.md:1
- Info: Found text in security policy: SECURITY.md:1
Reason
GitHub workflow tokens follow principle of least privilege
Details
- Info: jobLevel 'actions' permission set to 'read': .github/workflows/codeql.yml:25
- Info: jobLevel 'contents' permission set to 'read': .github/workflows/codeql.yml:26
- Info: topLevel 'contents' permission set to 'read': .github/workflows/codeql.yml:18
- Info: topLevel 'contents' permission set to 'read': .github/workflows/dependency-review.yml:13
- Info: topLevel 'contents' permission set to 'read': .github/workflows/examples.yml:11
- Info: topLevel permissions set to 'read-all': .github/workflows/scorecard.yml:18
- Info: topLevel 'contents' permission set to 'read': .github/workflows/test-node.js.yml:13
- Info: no jobLevel write permissions found
Reason
0 existing vulnerabilities detected
Reason
SAST tool detected but not run on all commits
Details
- Info: SAST configuration detected: CodeQL
- Warn: 28 commits out of 29 are checked with a SAST tool
Reason
dependency not pinned by hash detected -- score normalized to 7
Details
- Warn: npmCommand not pinned by hash: examples/typescript-node-es6/pretest.sh:6
- Warn: npmCommand not pinned by hash: examples/typescript-node-es6/pretest.sh:7
- Warn: npmCommand not pinned by hash: .github/workflows/examples.yml:39
- Info: 17 out of 17 GitHub-owned GitHubAction dependencies pinned
- Info: 8 out of 8 third-party GitHubAction dependencies pinned
- Info: 2 out of 5 npmCommand dependencies pinned
Reason
branch protection is not maximal on development and all release branches
Details
- Info: 'allow deletion' disabled on branch 'master'
- Info: 'force pushes' disabled on branch 'master'
- Warn: 'branch protection settings apply to administrators' is disable on branch 'master'
- Warn: 'stale review dismissal' is disable on branch 'master'
- Warn: required approving review count is 1 on branch 'master'
- Warn: codeowners review is not required on branch 'master'
- Warn: 'last push approval' is disable on branch 'master'
- Info: 'up-to-date branches' is required to merge on branch 'master'
- Info: status check found to merge onto on branch 'master'
- Info: PRs are required in order to make changes on branch 'master'
Reason
badge detected: Passing
Reason
Found 3/6 approved changesets -- score normalized to 5
Reason
Project has not signed or included provenance with any releases.
Details
- Warn: release artifact 0.9.7 not signed: https://api.github.com/repos/xmldom/xmldom/releases/195528492
- Warn: release artifact 0.9.6 not signed: https://api.github.com/repos/xmldom/xmldom/releases/189102275
- Warn: release artifact 0.9.5 not signed: https://api.github.com/repos/xmldom/xmldom/releases/182073233
- Warn: release artifact 0.9.4 not signed: https://api.github.com/repos/xmldom/xmldom/releases/179708206
- Warn: release artifact 0.9.3 not signed: https://api.github.com/repos/xmldom/xmldom/releases/176228863
- Warn: release artifact 0.9.7 does not have provenance: https://api.github.com/repos/xmldom/xmldom/releases/195528492
- Warn: release artifact 0.9.6 does not have provenance: https://api.github.com/repos/xmldom/xmldom/releases/189102275
- Warn: release artifact 0.9.5 does not have provenance: https://api.github.com/repos/xmldom/xmldom/releases/182073233
- Warn: release artifact 0.9.4 does not have provenance: https://api.github.com/repos/xmldom/xmldom/releases/179708206
- Warn: release artifact 0.9.3 does not have provenance: https://api.github.com/repos/xmldom/xmldom/releases/176228863
Score
8.2
/10
Last Scanned on 2025-02-01T18:03:29Z
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn MoreOther packages similar to @xmldom/xmldom
xmldom
A pure JavaScript W3C standard-based (XML DOM Level 2 Core) DOMParser and XMLSerializer module.
xmldom-sre
A pure JavaScript W3C standard-based (XML DOM Level 2 Core) DOMParser and XMLSerializer module.
@types/xmldom
TypeScript definitions for xmldom
xmldom-qsa
Based on @xmldom/xmldom with some minor enhancements. Add querySelector, querySelectorAll and match method to Document and Element.