Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/manojc/xtreamer
Reads XML files using streams.
https://github.com/manojc/xtreamer
buffer nodejs npm stream typescript xml xml-parser xml-parsing xmltojson
Last synced: about 1 month ago
JSON representation
Reads XML files using streams.
- Host: GitHub
- URL: https://github.com/manojc/xtreamer
- Owner: manojc
- License: mit
- Created: 2018-06-14T18:33:13.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-08-14T09:47:52.000Z (over 4 years ago)
- Last Synced: 2024-04-24T20:03:13.799Z (8 months ago)
- Topics: buffer, nodejs, npm, stream, typescript, xml, xml-parser, xml-parsing, xmltojson
- Language: JavaScript
- Homepage: https://runkit.com/manojc/xtreamer-playground
- Size: 229 KB
- Stars: 5
- Watchers: 2
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Xtreamer
[![npm version][npm-image]][npm-url]
[![node][node-version-image]][node-version-url]
[![Build Status][travis-image]][travis-url]
[![License][license-image]][license-url]
[![npm][downloads-image]][downloads-url]
[![Hackage-Deps][dependency-image]][dependency-url]
[![David][dev-dependency-image]][dev-dependency-url][travis-url]: https://travis-ci.com/manojc/xtreamer
[travis-image]: https://travis-ci.com/manojc/xtreamer.svg?branch=master[npm-url]: https://www.npmjs.com/package/xtreamer
[npm-image]: https://img.shields.io/npm/v/xtreamer.svg[license-url]: https://opensource.org/licenses/MIT
[license-image]: https://img.shields.io/npm/l/make-coverage-badge.svg[downloads-url]: https://www.npmjs.com/package/xtreamer
[downloads-image]: https://img.shields.io/npm/dm/xtreamer.svg[node-version-url]: https://github.com/manojc/xtreamer
[node-version-image]: https://img.shields.io/badge/node-%3E=6.0-blue.svg?style=flat-square[dependency-url]: https://www.npmjs.com/package/xtreamer
[dependency-image]: https://img.shields.io/hackage-deps/v/lens.svg[dev-dependency-url]: https://www.npmjs.com/package/xtreamer
[dev-dependency-image]: https://img.shields.io/david/dev/manojc/xtreamer.svg- [Xtreamer](#xtreamer)
- [Background](#background)
- [Why Xtreamer ?](#why-xtreamer)
- [Install Package](#install-package)
- [APIs](#apis)
- [Options](#options)
- [Usage](#usage)
- [Demo](#demo)
- [Test](#test)## V1.1.0
- Support for JSON transformer option ([demo](https://github.com/manojc/xtreamer/tree/master/demo))
## V1.0.0
- Handling to avoid repeating nodes in comments & cdata.
- Minor bug fixes and exception handling.
- Unit tests to cover corner case scenarios.
- No breaking changes.## Background
While working on a NodeJs project, I came across a problem of processing huge XML files. Node process can store a limited amout of data after which it throws `out of memory` exception. Thus files more than a specified limit was a pain for the application.
That is where I found a couple of `npm packages` viz. [xml-flow](https://www.npmjs.com/package/xml-flow) & [xml-stream](https://www.npmjs.com/package/xml-stream). These packages process the XML files in chunks using streams (which is exactly what I was looking for).
However, I came across few drawbacks regarding these packages explained in [this stackoverflow question](https://stackoverflow.com/questions/52129764/xml-flow-npm-package-unexpected-xml-parsing-behaviour). And thus I started working on this package which does exactly what these 2 packages do but it emits xml instead of processed JSON and gives a flexibility of choosing most compatible `xml to json npm packages`.
## Why Xtreamer ?
- One of the key points is `xtreamer` has `stream` as its only dependency.
- As this package uses streams, the memory consumption will always be in control.
- `xtreamer` itself is an extension of a `Transform Stream` so it can be piped to any input `Readable Stream` and `xtreamer` output can be piped to a `Writable Stream`.
- Apart from above points, `xtreamer` provides XML nodes in response which enables it to get hooked up with any `XML-JSON` parsing npm packages as per requirement.
## Install Package
```shell
npm i xtreamer --save
```## APIs
`xtreamer` extends [Transform Steram Class](https://nodejs.org/api/stream.html#stream_duplex_and_transform_streams) & provides an additional custom event `xmldata` which emits xml node.
### xtreamer( node : `string`, options?: `object` ) : [stream.Transform](https://nodejs.org/api/stream.html#stream_class_stream_transform)
`xtreamer` function initialises the transform stream. It accepts following 2 arguments -
- `node`: `string`
- `options`: `object` (coming soon)This function return a transform stream which can be triggered by piping it with any readable stream.
### xmldata event
Apart from [default steam events](https://nodejs.org/api/stream.html#stream_event_close), `streamer` emits `xmldata` event to emit individual xml nodes.
> From version `0.1.3` onwards, `xtreamer` also supports the conventional `data` event to emit individual xml nodes.
```javascript
const xtreamer = require("xtreamer");const xtreamerTransform = xtreamer("XmlNode", options);
// listening to `xmldata` event here
xtreamerTransform.on("xmldata", (data) => { });// OR
// `data` event also supported from version 0.1.3
xtreamerTransform.on("data", (data) => { });
```## Options
### max_xml_size ( default - 10000000 )
`max_xml_size` is maximum the number of characters allowed to hold in memory.
`xtreamer` raises an `error` event in case in memory xml string exceed specified limit. This ensures that the node process doesn't get terminated because of excess in memory data collection.
Default value of this option restricts the amount of data held in memory to approximately 10Mb. Following snippet shows how to override default value -
```javascript
const xtreamer = require("xtreamer");// overriding `max_xml_size` value here
const options = { max_xml_size: 30000000 };// passing `options` object as second parameter
const xtreamerTransform = xtreamer("XmlNode", options);
```Typically this value is not needed to override as in most of the cases, size of xml in a single xml node will not exceed 10Mb.
### transformer ( function(xmlString): jsonObj )
> This feature is introduced in version 1.1.0
The `transformer` option allows to transform the xml node output to desired JSON strucure by hooking it up with the streaming pipeline. **It becomes a very useful feature where JSON parser can be dynamically injected in `xtreamer`.**
This function is supposed to accept an xml string as a parameter and should return converted valid JSON object in response. **The transformer function can also return a promise** which will be resolved by `xtreamer` before emitting `data` event.
Note that the converted JSON is internally stringified before sending it back to in data event handler. So it is advised that the transformer function should always return valid JSON object in response.
In case transformer function encounters an error, `xtreamer` emits `error` event and stops the xml conversion process.
## Usage
Following code snippet uses `request` NPM package as input readable stream -
```javascript
const request = require("request");
const xtreamer = require("xtreamer");const sampleNode = "SampleNode";
const sampleUrl = "http://sample-xml.com/sample.xml";
let count = 0;// input readable stream with event handlers
const readStream = request.get(sampleUrl);// xtreamer transform stream with custom event handler
const xtreamerTransform = xtreamer(sampleNode)
.on("data", () => ++count % 100 || console.log(count))
.on("end", () => console.log(count))
.on("error", (error) => console.error(error));// input | transform
readStream.pipe(xtreamerTransform);
```As `streamer` is a transform stream, one can also pipe the stream with other streams -
```javascript
const { Writable } = require("stream");
const request = require("request");
const xtreamer = require('xtreamer');class XtreamerClient extends Writable {
_write(chunk, encoding, next) {
// do stuff
next();
}
}const sampleNode = "SampleNode";
const sampleUrl = "http://sample-xml.com/sample.xml";// input readable stream
const readStream = request.get(sampleUrl);// xtreamer transform stream with custom event handler
const xtreamerTransform = xtreamer(sampleNode)
.on("error", (error) => console.error(error));// input | transform | write
readStream.pipe(xtreamerTransform).pipe(new XtreamerClient());
```Check the [demo](https://github.com/manojc/xtreamer/tree/master/demo) for more examples which includes -
- demo.js - emits xml nodes
- transformer-demo.js - emits stringified JSON & uses `xml-js` package within `transformer function`
- transformer-promise-demo.js - emits stringified JSON & uses `xml-js` package within `transformer function` that return a promise.
## Demo
```shell
npm i && npm start
```## Test
```shell
npm i && npm run test
```---
# Author
- Author - Manoj Chalode ([email protected])
- Copyright - github.com/manojc