Convert XML to JSON in Node
Here’s a quick demo of how you can convert XML to JSON in NodeJS. Problem You are given a slew of XML files and you have to convert them to JSON. But why JSON? It takes lesser space Faster and easier to work with What are we dealing with here? Convert this input - <?xml version="1.0" encoding="UTF-8"?> <root> <string name="msg">Message</string> <string name="hello">Hello</string> </root> .. to something that we can relate to in JSON - ...