npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

xml-stream-lite

v0.5.1

Published

XML stream to JavaScript object converter based on Expat.

Downloads

719

Readme

XmlStreamLite

XmlStreamLite is a Node.js XML stream parser and editor, based on xml-stream which is based on node-expat (libexpat SAX-like parser binding).

xml-stream seems to no longer be maintained, so after having issues installing xml-stream due to binaries, I replaced the required iconv with iconv-lite

$ npm install xml-stream-lite

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.',
  '$': {
    'id': '123',
    'type': 'common'
  },
  '$name': 'item',
  '$text': '(text)'
}

Naturally, element text and child elements wouldn't be known until discovered in the stream, so the structure may differ across events. The complete structure as displayed should be available on updateElement. The $name is not available on endElement.

Collecting Children

It is sometimes required to select elements that have many children with one and the same name. Like this XML:

<item id="1">
  <subitem>one</subitem>
  <subitem>two</subitem>
</item>
<item id="2">
  <subitem>three</subitem>
  <subitem>four</subitem>
  <subitem>five</subitem>
</item>

By default, parsed element node contains children as properties. In the case of several children with same names, the last one would overwrite others. To collect all of subitem elements in an array use collect:

xml.collect('subitem');
xml.on('endElement: item', function(item) {
  console.log(item);
})

Preserving Elements and Text

By default, element text is returned as one concatenated string. In this XML:

<item>
  one <a>1</a>
  two <b>2</b>
</item>

The value of $text for item would be: one 1 two 2 without any indication of the order of element a, element b, and text parts. To preserve this order:

xml.preserve('item');
xml.on('endElement: item', function(item) {
  console.log(item);
})

Pause and resume parsing

If you want parsing to pause (for example, until some asynchronous operation of yours is finished), you can pause and resume XML parsing:

xml.pause();
myAsyncFunction( function() {
  xml.resume();
});

Beware that resume() must not be called from within a handler callback.