Skip to content
Advertisement

How do you fetch and parse xml in node.js?

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
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement