# xml-reader **Repository Path**: mirrors_pladaria/xml-reader ## Basic Information - **Project Name**: xml-reader - **Description**: Javascript XML Reader and Parser - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-19 - **Last Updated**: 2025-12-27 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README

XML-Reader

Reads XML documents and emits JavaScript objects with a simple, easy to use structure.

Build Status Coverage Status

## Features - Small, fast and simple - Runs everywhere (browser, node.js, React Native, ServiceWorkers, WebWorkers...) - Event driven and synchronous API - Can process input piece-by-piece in a serial fashion - Stream mode (low memory usage) - Reads CDATA sections ## Install ```bash npm install --save xml-reader ``` ## Node structure Objects emitted by the reader have the following structure: ```javascript /** * typedef {Object} XmlNode * @property {string} name - element name (empty for text nodes) * @property {string} type - node type ('element' or 'text') * @property {string} value - value of a text node * @property {XmlNode} parent - reference to parent node * @property {Object} attributes - attributes {name: value, ...} * @property {XmlNode[]} children - array of children nodes */ ``` ## Related modules - [`xml-query`](https://github.com/pladaria/xml-query) - [`xml-printer`](https://github.com/pladaria/xml-printer) - [`xml-lexer`](https://github.com/pladaria/xml-lexer) ## Examples ### Read document (event driven) Basic example. Read and parse a XML document. ```javascript const XmlReader = require('xml-reader'); const reader = XmlReader.create(); const xml = ` Alice Bob Hello This is a demo! `; reader.on('done', data => console.log(data)); reader.parse(xml); /* Console output: { name: 'message', type: 'element', children: [ { name: 'to', type: 'element', children: [{ type: 'text', value: 'Alice' }]}, { name: 'from', type: 'element', children: [{ type: 'text', value: 'Bob' }]}, { name: 'heading', type: 'element', attributes: { color: 'blue' }, children: [{ type: 'text', value: 'Hello' }]}, { name: 'body', type: 'element', attributes: { color: 'red' }, children: [{ type: 'text', value: 'This is a demo!' }]}]} Note: empty values and references to parent nodes removed for brevity! */ ``` ### Read document (synchronous) This mode is only valid for reading complete documents (root node must be closed). ```javascript const XmlReader = require('xml-reader'); const xml = 'Hello!'; const result = XmlReader.parseSync(xml/*, options*/); ``` ### Stream mode In stream mode, nodes are removed from root as they are emitted. This way memory usage does not increase. ```javascript const XmlReader = require('xml-reader'); const reader = XmlReader.create({stream: true}); const xml = ` `; reader.on('tag:item', (data) => console.log(data)); // {name: 'item', type: 'element', value: '', attributes: {v: '1'}, children: []} // {name: 'item', type: 'element', value: '', attributes: {v: '2'}, children: []} // {name: 'item', type: 'element', value: '', attributes: {v: '3'}, children: []} reader.on('done', (data) => console.log(data.children.length)); // 0 reader.parse(xml); ``` You can also listen to all tags: ```javascript reader.on('tag', (name, data) => console.log(`received a ${name} tag:`, data)); ``` ### Stream mode (chunked) In this example we are calling multiple times to the parser. This is useful if your XML document is a stream that comes from a TCP socket or WebSocket (for example XMPP streams). Simply feed the parser with the data as it arrives. As you can see, the result is exactly the same as the previous one. ```javascript const XmlReader = require('xml-reader'); const reader = XmlReader.create({stream: true}); const xml = ` `; reader.on('tag:item', (data) => console.log(data)); // {name: 'item', type: 'element', value: '', attributes: {v: '1'}, children: []} // {name: 'item', type: 'element', value: '', attributes: {v: '2'}, children: []} // {name: 'item', type: 'element', value: '', attributes: {v: '3'}, children: []} reader.on('done', (data) => console.log(data.children.length)); // 0 // Note that we are calling the parse function providing just one char each time xml.split('').forEach(char => reader.parse(char)); ``` ### Reset Use the `reset()` method to reset the reader. This is useful if a stream gets interrupted and you want to start a new one or to use the same reader instance to parse multiple documents (just reset the reader between them). Example: ```javascript const doc1 = '...'; const doc2 = '...'; reader.parse(doc1); // when the document ends, the reader stops emitting events reader.reset(); // now you can parse a new document reader.parse(doc2); ``` ### Options Default options are: ```javascript { stream: false, parentNodes: true, tagPrefix: 'tag:', doneEvent: 'done', emitTopLevelOnly: false, } ``` #### parentNodes (boolean) If `true` (default), each node of the AST has a `parent` node which point to its parent. If `false` the parent node is always `null`. #### stream (boolean) Enable or disable stream mode. In stream mode nodes are removed from root after being emitted. Default `false`. Ignored in `parseSync`; #### doneEvent (string) Default value is `'done'`. This is the name of the event emitted when the root node is closed and the parse is done. Ignored in `parseSync`; #### tagPrefix (string) Default value is `'tag:'`. The event driven API emits an event each time a tag is read. Use this option to set a name prefix. Ignored in `parseSync`; #### emitTopLevelOnly (boolean) Default value is `false`. When true, tag events are only emitted by top level nodes (direct children from root). This is useful for XMPP streams like XMPP where each top level child is a stanza. For example, given the following XML stream: ```xml hello 2016-10-06 bye 2016-10-07 ``` tags emitted with `emitTopLevelOnly=false` ```text body date message body date message ``` tags emitted with `emitTopLevelOnly=true` ```text message message ``` ## License MIT