JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • 0
  • Score
    100M100P100Q64114F
  • License MIT

Modify XML documents in node.js with ease

Package Exports

  • @ls-age/xml

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@ls-age/xml) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

@ls-age/xml

Modify XML documents in node.js with ease

CircleCI

An XML parsing, manipulation and serialization library. Implements some very basic DOM APIs (By far not complete).

Installation

As always, run npm install [--save] @ls-age/xml to install.

Usage

A basic example that parses an xml string, manipulates it and logs it's xml string again:

import { parse, build } from '@ls-age/xml';

parse(`<?xml version="1.0" ?>
<root>
  <content>content</content>
</root>`)
  .then(doc => {
    doc.documentElement.getElementsByTagName('content')[0].setAttribute('test', 'value');
    doc.documentElement.appendChild(doc.createElement('another'));
    
    console.log(build(doc, {
      indent: ' ',
      newline: '\r\n',
    }));
  });

/* Prints:
<?xml version="1.0" ?>\r\n
<root>\r\n
 <content test="value">content</content>\r\n
 <another />\r\n
</root>
*/