Is your feature request related to a problem? Please describe.
There's no way to try jg queries without installing the tool first. Users discovering jsongrep from the README or blog post have to install before they can experiment, which raises the barrier to adoption.
Describe the solution you'd like
A browser-based playground (similar to jaq's playground) where users can paste JSON (or YAML/TOML) and run jg queries interactively.
This would involve:
- Small WASM wrapper around the lib.
- Minimal web UI
- GitHub Pages deployment workflow with
wasm-pack (Criterion reports already hosted)
Describe alternatives you've considered
- Just linking to the install instructions → current approach, but higher friction
Additional context
- Reference implementation:
jaq-play (~200 lines of HTML/JS + a small Rust WASM crate)
- The gh-pages branch currently hosts Criterion HTML reports; the playground would need a subdirectory layout or separate deployment path
Is your feature request related to a problem? Please describe.
There's no way to try
jgqueries without installing the tool first. Users discoveringjsongrepfrom the README or blog post have to install before they can experiment, which raises the barrier to adoption.Describe the solution you'd like
A browser-based playground (similar to jaq's playground) where users can paste JSON (or YAML/TOML) and run
jgqueries interactively.This would involve:
wasm-pack(Criterion reports already hosted)Describe alternatives you've considered
Additional context
jaq-play(~200 lines of HTML/JS + a small Rust WASM crate)