Implement JSON input stream support
Open
enhancement
- Dominant language
- JavaScript
- Stars
- 481
- Forks
- 28
- PR merge metrics
- No merged PRs in 30d
Description
jq.node should support [JSON lines](http://jsonlines.org/) and/or simply a stream of ```\n``` separated records.
Support this:
```
$ echo -e '{"foo": "bar"}\n{"baz": "qux"}' | jq '.'
{
"foo": "bar"
}
{
"baz": "qux"
}
```
Contributor guide
Assessment
This issue has not been assessed yet.