xml-utils-processors-ts

0.2.1 • Public • Published

xml-utils-processors-ts

Bun CI npm

Typescript wrapper over the Saxon-HE library to be used within the Connector Architecture. Currently this repository exposes 1 function:

js:XQueryProcessor

This processor is able to execute one or multiple predefined XQueries over as stream of XML documents. It relies on the Java-based Saxon-HE engine to execute the XQueries. This processor can be used within a Connector Architecture (CA) pipeline, by defining an input stream of XML documents (js:xmlInput), over which a set of XQueries (js:xquery) will be executed and output in a set of correspondent output streams (js:output). Each query shall be given a name which must correspond to the name of the output stream where the result will be expected. An example definition of the processor is shown next:

[ ] a js:XQueryProcessor; 
    js:xmlInput <xmlChannelReader>;
    js:xquery [
        js:name "Q1";
        js:query "<SomeXQuery>{}</SomeXQuery>"
    ], [
        js:name "Q2";
        js:query "<AnotherXQuery>{}</AnotherXQuery>"
    ];
    js:output [
        js:name "Q1";
        js:outputStream <outputChannelReader1> # This can be consumed by another CA processor
    ], [
        js:name "Q2";
        js:outputStream <outputChannelReader2> # This can be consumed by another CA processor
    ];
    js:saxonLocation <./SaxonHE12-3J.zip>. # Optional. If not given the latest release will be used

Package Sidebar

Install

npm i xml-utils-processors-ts

Weekly Downloads

1

Version

0.2.1

License

MIT

Unpacked Size

38.9 kB

Total Files

7

Last publish

Collaborators

  • julianrojas87