add query json plugin for experimentation (#3327)

* add query json plugin for experimentation

* add some error handling

* closer but Kind::Array is still horked

* unravel the table so the output looks right

* clippy

* added the ability to use gjson modifiers
This commit is contained in:
Darren Schroeder
2021-04-19 11:19:06 -05:00
committed by GitHub
parent 9d24afcfe3
commit ea5bf9db36
9 changed files with 282 additions and 0 deletions

View File

@ -0,0 +1,6 @@
use nu_plugin::serve_plugin;
use nu_plugin_query_json::QueryJson;
fn main() {
serve_plugin(&mut QueryJson::new());
}