jsonreduce

1.0.1 • Public • Published

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

Readme

Keywords

none

Package Sidebar

Install

npm i jsonreduce

Weekly Downloads

1

Version

1.0.1

License

MIT

Last publish

Collaborators

  • timhudson