README
xml-stream-sax
xml-stream-sax is a Node.js XML stream parser and editor. It is a fork of xml-stream that replaces node-expat with sax-js. For most people this distinction doesn't matter, but I was seeing some very strange bugs in node-expat with large files, and switching to sax-js made those bugs go away.
$ yarn add xml-stream-sax
There may be minor differences in behavior compared to xml-stream, but most stuff should be the same.
Rationale
When working with large XML files, it is probably a bad idea to use an XML to JavaScript object converter, or simply buffer the whole document in memory. Then again, a typical SAX parser might be too low-level for some tasks (and often a real pain).
This is why we've rolled our own stream parser that tries to address these shortcomings. It processes an XML stream chunk by chunk and fires events only for nodes of interest, matching them with CSS-like selectors.
Events
Supported events:
data
on outgoing data chunk,end
when parsing has ended,startElement[: selector]
on opening tag for selector match,updateElement[: selector]
on finished node for selector match with its contents buffered,endElement[: selector]
on closing tag for selector match,text[: selector]
on tag text for selector match.
When adding listeners for startElement
, updateElement
, and text
the
callback can modify the provided node, before it is sent to the consumer.
Selector syntax is CSS-like and currently supports:
ancestor descendant
parent > child
Take a look at the examples for more information.
Element Node
Each of the four node events has a callback with one argument. When parsing, this argument is set to the current matched node. Having a chunk of XML like this:
<item id="123" type="common">
<title>Item Title</title>
<description>Description of this item.</description>
(text)
</item>
The structure of the item element node would be:
{
title: 'Item Title',
description: 'Description of this item.',
'