All Projects → maxogden → Xml Json

maxogden / Xml Json

convert xml to json on the command line. not streaming, pure javascript

Programming Languages

javascript
184084 projects - #8 most used programming language

xml-json

convert xml to json on the command line, streaming and pure JS. extracts all matched xml elements by node name and stream them out at line delimited JSON. can only match one node name at a time.

NPM

usage

you must specify both a input stream and a xml node filter. conversion of all input xml is not supported at this time. all nodes that match your filter node name will be returned one at a time as JSON.

npm install xml-json -g
xml-json <file> <xml node name>

or cat something.xml | xml-json <xml node name>

examples

curl "http://news.yahoo.com/rss/entertainment" | xml-json item
xml-json data.xml entry
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].