Author: | fabiospampinato |
---|---|
Views Total: | 16 views |
Official Page: | Go to website |
Last Update: | September 8, 2023 |
License: | MIT |
Preview:

Description:
A tiny and fast JavaScript library for parsing, stringifying, and validating XML data in the browser or Node.js.
Can be useful for developers who need to extract data from XML or convert JavaScript objects to XML.
How to use it:
1. Install and import the XML Simple Parser into your project.
# NPM $ npm i xml-simple-parser
import XML from 'xml-simple-parser';
2. Parse XML strings and convert them into an Abstract Syntax Tree (AST).
const ast = XML.parse (xml);
3. Stringify back to XML:
const xml = XML.stringify(ast);
4. Check the validity of your XML strings with ease:
// => true validate (xml);