node-xmlsplit icon indicating copy to clipboard operation
node-xmlsplit copied to clipboard

Split large XML files into smaller chunks, uses Node.js Stream API

Results 4 node-xmlsplit issues
Sort by recently updated
recently updated
newest added

## XML File I have the following small XML file ```xml 1 2-0 2-1 2-2 2-3 ``` ## Program And the following file ```javascript import fs from 'fs'; const XmlSplit...

It seems that splitting the following file actually issues splitted XML document that are invalid as they end with an unexpected tag: **Get the xml to parse**: ```sh wget "http://sdw-wsrest.ecb.europa.eu/service/data/QSA/all/all?dimensionAtObservation=TIME_PERIOD&detail=nodata"...

Xmlsplit appears not to handle self-closing tags: it appears to think it has seen only the open-tag and never finds the balanced close-tag. This PR demonstrates the problem, causing the...

Addressing issue https://github.com/remuslazar/node-xmlsplit/issues/9 as well as some improvements to tests