Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@types/xmldom

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/xmldom

TypeScript definitions for xmldom

  • 0.1.34
  • ts4.5
  • ts4.6
  • ts4.7
  • ts4.8
  • ts4.9
  • ts5.0
  • ts5.1
  • ts5.2
  • ts5.3
  • ts5.4
  • ts5.5
  • ts5.6
  • ts5.7
  • ts5.8
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
245K
decreased by-20.23%
Maintainers
1
Weekly downloads
 
Created

What is @types/xmldom?

@types/xmldom provides TypeScript type definitions for the xmldom library, which is used to parse and serialize XML documents in a DOM-like structure.

What are @types/xmldom's main functionalities?

Parsing XML

This feature allows you to parse an XML string into a DOM Document object, which can then be traversed and manipulated using standard DOM methods.

const { DOMParser } = require('xmldom');
const xmlString = '<root><child>content</child></root>';
const doc = new DOMParser().parseFromString(xmlString, 'text/xml');
console.log(doc.documentElement.nodeName); // Output: root

Serializing XML

This feature allows you to serialize a DOM Document object back into an XML string, which can be useful for saving or transmitting the XML data.

const { DOMParser, XMLSerializer } = require('xmldom');
const xmlString = '<root><child>content</child></root>';
const doc = new DOMParser().parseFromString(xmlString, 'text/xml');
const serializedXml = new XMLSerializer().serializeToString(doc);
console.log(serializedXml); // Output: <root><child>content</child></root>

Manipulating XML

This feature allows you to manipulate the XML DOM by adding, removing, or modifying elements and attributes, providing a way to dynamically change the XML structure.

const { DOMParser, XMLSerializer } = require('xmldom');
const xmlString = '<root><child>content</child></root>';
const doc = new DOMParser().parseFromString(xmlString, 'text/xml');
const newElement = doc.createElement('newChild');
newElement.textContent = 'new content';
doc.documentElement.appendChild(newElement);
const serializedXml = new XMLSerializer().serializeToString(doc);
console.log(serializedXml); // Output: <root><child>content</child><newChild>new content</newChild></root>

Other packages similar to @types/xmldom

FAQs

Package last updated on 07 Nov 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc