README
JQE
Like JQ, but you use javascript Expressions.
- Stdin is parsed as JSON and passed into your expression as the variable
data
. - Your expression is evaluated and written to stdout as JSON.
Example
$ cat mydata.json | jqe 'data.rows.filter(r => r.statusCode === 200).map(r => r.responseTime)'
[
...JSON...
]