livejq
is JSON parser like jq
but is designed to work in continuous input without crashing on invalid JSON
It works on one assumption that the JSON is a single string like "{ "name": "Kunal Singh", "age": 21 }"
.
This is a limitation, but will be fixed in future
livejq.mp4
Install using cargo
cargo install livejq
or you can find linux
binary in the release page
./my_program | livejq
Here
|
is for piping output ofmy_program
intolivejq
as input.