npm.io
1.0.0 • Published 10 years ago

jstransformer-xml2js

Licence
MIT
Version
1.0.0
Deps
3
Vulns
1
Weekly
0
Stars
1

jstransformer-xml2js

xml2js support for JSTransformers.

Build Status Coverage Status Dependency Status NPM version

Installation

npm install jstransformer-xml2js

API

var xml = require('jstransformer')(require('jstransformer-xml'));
var opts = {};

var fixture = '<?xml version="1.0" encoding="UTF-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title>Example Feed</title></feed>';

var promise = xml.renderAsync(fixture, opts);
promise.then(function(data) {
  console.log(JSON.parse(data.body));
  //=> { feed:
  // { '

License

MIT

: { xmlns: 'http://www.w3.org/2005/Atom' },
// title: [ 'Example Feed' ] } } }); var promise = xml.renderFileAsync('./path/to/config.xml', opts); promise.then(function(data) { console.log(JSON.parse(data.body)); //=> { feed: // { '

License

MIT

: { xmlns: 'http://www.w3.org/2005/Atom' },
// title: [ 'Example Feed' ] } } });

License

MIT