x2json

XML <=> JSON mapping/converting library


Keywords
x2js, xml2json, x2json, xml, json
License
Apache-2.0
Install
npm install x2json@1.2.0

Documentation

Xmljson

Simple and lightweight XML to JSON converter.

Just be sure that your argument is a valid DOM Document, and your done.

var parser = new DOMParser();
var xml = parser.parseFromString(string, 'text/xml'); // Where 'string' is your xml data collected by any kind
var json = xmljson(string);