1.0.1 • Published 9 years ago

jsonreduce v1.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
9 years ago

jsonreduce

streaming command line newline-delimited json reducing utility modeled after jsonmap

build status

installation

$ npm install jsonreduce -g

usage

this will be each line of JSON that gets parsed out of the incoming newline-delimited json stream. Two arguments will be provided, previous and current. current is the current line being parsed while previous is the memoized value (same as this).

$ echo '{"foo": "bar"}\n{"baz": "taco"}' | jsonreduce 'this.keys = this.keys.concat(Object.keys(current))' --memo '{"keys": []}'
{"keys":["foo","baz"]}

License

MIT