NodeJS XML to JSON using XML2JS https://embarkcode.com/nodejs-xml-to-json/
const xml2js = require('xml2js'); | |
const productXML = '<Product><ID>10</ID><Name>Pizza</Name></Product>'; | |
xml2js.parseString(productXML, function (err, result) { | |
// console.dir will allow us to print the whole object in our console | |
console.dir(result); // Output: { Product: { ID: [ '10' ], Name: [ 'Pizza' ] } } | |
console.dir(result.Product); // Output: { ID: [ '10' ], Name: [ 'Pizza' ] } | |
console.log(result.Product.ID[0]); // Output: 10 | |
console.log(result.Product.Name[0]); // Output: Pizza | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment