
Product
Introducing Module Reachability: Focus on the Vulnerabilities That Matter
Module Reachability filters out unreachable CVEs so you can focus on vulnerabilities that actually matter to your application.
xml-decoder
Advanced tools
Project based on ktemelkov/node-xml2json, but is about only parsing. The main feature is ability to transform target object to remove xml structures bloating.
Parsing features:
__tests__/fixtures/simple-list
)It does not parse the following elements:
$ npm install xml-decoder
var xmldecoder = require('xml-decoder');
var xml = "<foo attr=\"value\">bar</foo>";
console.log(xml)
var obj = xmldecoder(xml, {mergeAttrs: true});
console.log(JSON.stringify(obj));
Example xml:
<root>
<items count="2">
<item>1</item>
<item>2</item>
</items>
<value attr="a"/>
<value attr="b"/>
<node_a>x</node_a>
<node_b>y</node_b>
<item>3</item>
</root>
Configurated options:
var options = {
mergeAttrs: true,
toArray: ['root/items'],
asArray: ['root/item'],
renameTag: {
'root/value':'values',
'root/node_a':'nodes',
'root/node_b':'nodes',
}
}
Result object:
{
"root": {
"@tag": "root",
"items": [
{ "@tag": "item", "@value": 1 },
{ "@tag": "item", "@value": 2 }
],
"values": [
{ "@tag": "value", "attr": "a" },
{ "@tag": "value", "attr": "b" }
],
"nodes": [ "x", "y" ],
"item": [ 3 ]
}
}
typecast: false, // disable auto typecasting
typecast: [
"path/to/tag": "number",
'path/to/@attr': "string" // attributes prefixed with @
]
FAQs
another xml reader with build in transformations
The npm package xml-decoder receives a total of 70 weekly downloads. As such, xml-decoder popularity was classified as not popular.
We found that xml-decoder demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Product
Module Reachability filters out unreachable CVEs so you can focus on vulnerabilities that actually matter to your application.
Company News
Socket is bringing best-in-class reachability analysis into the platform — cutting false positives, accelerating triage, and cementing our place as the leader in software supply chain security.
Product
Socket is introducing a new way to organize repositories and apply repository-specific security policies.