Socket
Socket
Sign inDemoInstall

arraybuffer-xml-parser

Package Overview
Dependencies
1
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    arraybuffer-xml-parser

Parse XML files contained in an array buffer


Version published
Weekly downloads
174
decreased by-31.76%
Maintainers
1
Install size
207 kB
Created
Weekly downloads
 

Changelog

Source

0.6.0 (2022-05-25)

Features

  • add function parseStream (#16) (554e133)

Readme

Source

arraybuffer-xml-parser

NPM version build status Test coverage npm download

This code is based on a copy of fast-xml-parser.

The reason is that we wanted to parse large XML files (over 1Gb) and the current implementation of fast-xml-parser use as input a string. In the current implementation of javascript in V8 this limits the size to 512Mb.

In this code we parse directly a Uint8Array (or an ArrayBuffer) and the limit is now 4Gb.

Installation

$ npm i arraybuffer-xml-parser

Usage

XML to JSON

import { parse } from 'arraybuffer-xml-parser';

// in order to show an example we will encode the data to get the ArrayBuffer.

const encoder = new TextEncoder();
const xmlData = encoder.encode(
  `<rootNode><tag>value</tag><boolean>true</boolean><intTag>045</intTag><floatTag>65.34</floatTag></rootNode>`,
);

const object = parse(xmlData, options);

/*
object = {
  rootNode: {
    tag: 'value',
    boolean: 'true',
    intTag: '045',
    floatTag: '65.34',
  },
}
*/

Options

OptionDescriptionDefault value
trimValuestrim string values of an attribute or nodetrue
attributeNamePrefixprepend given string to attribute name for identification'$'
attributesNodeName(Valid name) Group all the attributes as properties of given name.false
ignoreAttributesIgnore attributes to be parsed.false
ignoreNameSpaceRemove namespace string from tag and attribute names.false
allowBooleanAttributesa tag can have attributes without any valuefalse
textNodeNameName of the property containing text nodes'#text'
dynamicTypingAttributeValueParse the value of an attribute to float, integer, or boolean.true
dynamicTypingNodeValueParse the value of text node to float, integer, or boolean.true
cdataTagNameIf specified, parser parse CDATA as nested tag instead of adding it's value to parent tag.false
arrayModeWhen false, a tag with single occurrence is parsed as an object but as an array in case of multiple occurences. When true, a tag will be parsed as an array always excluding leaf nodes. When strict, all the tags will be parsed as array only. When instance of RegEx, only tags will be parsed as array that match the regex. When function a tag name is passed to the callback that can be checked.false
tagValueProcessorProcess tag value during transformation. Like HTML decoding, word capitalization, etc. Applicable in case of string only.(value) => decoder.decode(value).replace(/\r/g, '')
attributeValueProcessorProcess attribute value during transformation. Like HTML decoding, word capitalization, etc.(value) => value
stopNodesan array of tag names which are not required to be parsed. They are kept as Uint8Array.[]

API Documentation

License

MIT

FAQs

Last updated on 25 May 2022

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc