xml-to-json

0.1.1 • Public • Published

node-xml-json

Build Status

parse xml to json

Install

npm install xml-to-json

Usage

var xml2json = require('xml-to-json')
 
xml2json({
    input: './sample/sample2.xml',
    output: './sample/test.json'
}, function(err, result) {
  
    if(err) {
        console.error(err);
    } else {
        console.log(result);
    }
  
});

In config object, you have to enter an input path. But If you don't want to output any file you can set to null.

License

MIT @chilijung

/xml-to-json/

    Package Sidebar

    Install

    npm i xml-to-json

    Weekly Downloads

    94

    Version

    0.1.1

    License

    MIT

    Last publish

    Collaborators

    • chilijung