Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

saxophone

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

saxophone

Fast and lightweight event-driven XML parser in pure JavaScript

  • 0.1.2
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
9.1K
decreased by-16.37%
Maintainers
1
Weekly downloads
 
Created
Source

Saxophone 🎷

Fast and lightweight event-driven XML parser in pure JavaScript.

npm version npm downloads build status coverage dependencies status

Saxophone is inspired by SAX parsers like sax-js and easysax: it does not generate any DOM while parsing documents. Instead, it reports parsing events for each tag or text node encountered. This means that Saxophone has a really low memory footprint.

The parser does not keep track of the document state while parsing and does not check whether the document is well-formed or valid, making it super-fast (see benchmarks below).

This library is best suited when you need to extract simple data out of an XML document that you know is well-formed. The parser will not report precise errors in case of syntax problems. An example would be reading data from an API endpoint.

Installation

This library works both in Node.JS ≥4.0 and recent browsers. To install with npm:

$ npm install --save saxophone

Benchmarks

LibraryOperations per second (higher is better)
Saxophone3,222 ops/sec ±5.39%
EasySax2,128 ops/sec ±8.87%
node-expat884 ops/sec ±5.39%
libxmljs.SaxParser609 ops/sec ±4.61%
sax-js113 ops/sec ±3.87%

To run the benchmarks by yourself, use the following commands:

$ git clone https://github.com/matteodelabre/saxophone.git
$ cd saxophone
$ npm install
$ npm install easysax node-expat libxmljs sax
$ npm run benchmark

Tests and coverage

To run tests and check coverage, use the following commands:

$ git clone https://github.com/matteodelabre/saxophone.git
$ cd saxophone
$ npm install
$ npm test
$ npm run coverage

Usage

Example

const Saxophone = require('saxophone');
const parser = Saxophone();

// called whenever an opening tag is found in the document,
// such as <example id="1" /> - see below for a list of events
parser.on('tagopen', tag => {
    console.log(
        `Open tag "${tag.name}" with attributes: ${JSON.stringify(tag.attributes)}.`
    );
});

// called when parsing the document is done
parser.on('end', () => {
    console.log('Parsing finished.');
});

// triggers parsing - remember to set up listeners before
// calling this method
parser.parse('<root><example id="1" /><example id="2" /></root>');

Output:

Open tag "root" with attributes: {}.
Open tag "example" with attributes: {"id":"1"}.
Open tag "example" with attributes: {"id":"2"}.
Parsing finished.

API

Saxophone()

Returns a new Saxophone instance. This is a factory method, so you must not prefix it with the new keyword.

Saxophone#on(), Saxophone#removeListener(), ...

Saxophone composes with the EventEmitter methods. To work with listeners, check out Node's documentation.

Saxophone#parse(xml)

Triggers the actual parsing. This method will fire registered listeners so you need to set them up before calling it.

xml is a string containing the XML that you want to parse. At this time, Saxophone does not support Buffers or Streams.

Events

tagopen

Emitted when an opening tag is parsed. This encompasses both regular tags and self-closing tags. An object is passed with the following data.

  • name: name of the parsed tag.
  • attributes: map containing the tag's attributes as names -> values.
  • isSelfClosing: true if the tag is self-closing.
tagclose

Emitted when a closing tag is parsed. An object containing the name of the tag is passed.

error

Emitted when a parsing error is encountered while reading the XML stream such that the rest of the XML cannot be correctly interpreted.

Because this library's goal is not to provide accurate error reports, the passed error will only contain a short description of the syntax error (without giving the position, for example).

processinginstruction

Emitted when a processing instruction (such as <? contents ?>) is parsed. An object with the contents of the processing instruction is passed.

text

Emitted when a text node between two tags is parsed. An object with the contents of the text node is passed.

cdata

Emitted when a CDATA section (such as <![CDATA[ contents ]]>) is parsed. An object with the contents of the CDATA section is passed.

comment

Emitted when a comment (such as <!-- contents -->) is parsed. An object with the contents of the comment is passed.

end

Emitted after all events, without arguments.

License

Released under the MIT license.
See the full license text.

Keywords

FAQs

Package last updated on 03 Aug 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc