Convert xml to json in node.js

Could you tell me some working jml -> json library for node.js?

SAX-style would be preferable to have everything done while the XML file is still receiving.

thank

+5
source share
3 answers

You can try xml2js . I tried this myself, but for a really simple xml, so I'm not sure if it will work β€œwhile the xml file is still receiving”.

+4
source

http://code.google.com/p/x2js But it works with the DOM.

0
source

All Articles