Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
xml2js-expat
Advanced tools
Simple XML to JavaScript object converter that uses Expat, a fast XML parser.
Simple XML to JavaScript object converter. Uses node-expat. Install with npm :) See the tests for examples until docs are written. Note: If you're looking for a full DOM parser, you probably want JSDom.
var fs = require('fs')
var xml2js = require('xml2js-expat')
var parser = new xml2js.Parser();
fs.createReadStream('/path/to/file')
.pipe(parser)
.on('error', console.error.bind(console, 'xml2js: parse error:'))
.on('end', console.log.bind(console, 'xml2js: successfully parsed file:'))
The Parser object supports the following encodings, that can be specified as the first parameter, in which case the callback should be the second. (Each argument is optional.)
UTF-8
UTF-16
ISO-8859-1
US-ASCII
For example:
var parser = new xml2js.Parser('UTF-8', function(error, result) {});
or
var parser = new xml2js.Parser('UTF-8')
parser.EXPLICIT_CHARKEY = true // Force text nodes to always appear as property.
parser
.on('end', function (result) {
console.log('end', result) // end { '#': 'data' }
})
.on('error', function (result) {
console.log('error', result)
})
.parse('<p>data</p>')
Parser also supports streaming input:
var parser = new xml2js.Parser('UTF-8');
fs.createReadStream('/path/to/file')
.pipe(parser)
.on('end', function(result) {})
.on('error', function(error) {})
FAQs
Simple XML to JavaScript object converter that uses Expat, a fast XML parser.
The npm package xml2js-expat receives a total of 26 weekly downloads. As such, xml2js-expat popularity was classified as not popular.
We found that xml2js-expat 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.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.