日本語のREADMEはこちらです: README.ja.md
Convert XML to JSON and back.
- Convert XML to JSON
- Convert JSON to XML
import { XML } from "https://js.sabae.cc/XML.js";
const json = XML.toJSON("<xml att='abc'><tag>text</tag></xml>");
console.log(json); // { xml: { att: "abc", tag: { "#text": "text" } } }
const xml = XML.stringify({ xml: { att: "abc", tag: { "#text": "text" } } });
console.log(xml);MIT License — see LICENSE.