Home > xml-simple

xml-simple

Xml-simple is a project mainly written in JavaScript, based on the View license.

xml2js wrapper to simplify XML parsing in Node.js

Install

npm install

Use

var XML = require('xml-simple');
XML.parse("<p><b>XML</b></p>", function(e,parsed) { console.log(parsed) })
> { b: 'XML' }

More, Bug Reports?

Go to xml2js. This is just a simple wrapper to avoid the event emitter syntax for simple transforms.

Previous:amele