JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 69364
  • Score
    100M100P100Q150722F
  • License MIT/X11

Native and Full Javsacript implementation of the classic XMLWriter class

Package Exports

  • xml-writer

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 (xml-writer) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

XMLWriter for NodeJS

It's native and full javascript implementation of the classic XMLWriter class. The API is complete, flexible and tolerant. XML is still valid.

Installation

With npm do:

$ npm install xml-writer

Examples

Basic

var XMLWriter = require('xml-writer');
xw = new XMLWriter;
xw.startDocument();
xw.startElement('root');
xw.text('Some content');
xw.endDocument();

console.log(xw.toString());

Output:

<?xml version="1.0"?>
<root>Some content</root>

Tests

Use nodeunit to run the tests.

$ npm install nodeunit
$ nodeunit test

API Documentation

startDocument(String version = '1.0', String encoding = NULL, Boolean standalone = false)

Create document tag

Also

License:

MIT/X11