How do you fetch an xml from online with node.js and parse it into a javascript object? I’ve been searching the npm register but only found how to parse the xml-string, not how to fetch it.
Advertisement
Answer
To fetch an online resource, you can use http.get()
. The data can be loaded into memory, or directly sent to a XML parser since some support the feature of parsing streams.
JavaScript
x
19
19
1
var req = http.get(url, function(res) {
2
// save the data
3
var xml = '';
4
res.on('data', function(chunk) {
5
xml += chunk;
6
});
7
8
res.on('end', function() {
9
// parse xml
10
});
11
12
// or you can pipe the data to a parser
13
res.pipe(dest);
14
});
15
16
req.on('error', function(err) {
17
// debug error
18
});
19