0.1.6 • Published 7 years ago

@ls-age/xml v0.1.6

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

@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>
*/
0.1.6

7 years ago

0.1.5

7 years ago

0.1.4

7 years ago

0.1.3

7 years ago

0.1.2

7 years ago

0.1.1

7 years ago