Created
November 1, 2014 17:48
-
-
Save danrasmuson/79448ea89790aa59c6fc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| npm install xml2js | |
| var parseString = require('xml2js').parseString; | |
| var xml = "<root>Hello xml2js!</root>" | |
| parseString(xml, function (err, result) { | |
| console.dir(result); | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment