Package Exports
- xml2js
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 (xml2js) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
node-xml2js
Description
Simple XML to JavaScript object converter. Uses sax-js. Install with npm :) See the tests for examples until docs are written. Note: If you're looking for a full DOM parser, you probably want JSDom.
Simple usage
var sys = require('sys'),
fs = require('fs'),
xml2js = require('xml2js');
var parser = new xml2js.Parser();
parser.addListener('end', function(result) {
console.log(sys.inspect(result));
console.log('Done.');
});
fs.readFile(__dirname + '/foo.xml', function(err, data) {
parser.parseString(data);
});