jqp

A TUI playground to experiment with jq

MIT License

Stars
2.2K
Committers
12

Bot releases are hidden (Show)

jqp - v0.7.0 Latest Release

Published by noahgorstein 4 months ago

Overview

Mostly small bug fixes and some performance improvements.

One new feature added is the ability to specify an optional query argument to jqp cli that it will execute on startup.

curl "https://api.github.com/repos/jqlang/jq/issues" | jqp '.[] | {"title": .title, "url": .url}'

https://github.com/noahgorstein/jqp/assets/23270779/735cf84a-dc6f-41e8-9659-5022a4937046

@EmilyGraceSeville7cf also added a JSON schema for jqp's config which should help users create and edit their config files.

What's Changed

New Contributors

Full Changelog: https://github.com/noahgorstein/jqp/compare/v0.6.0...v0.7.0

jqp - v0.6.0

Published by noahgorstein 6 months ago

Maybe the most notable update here is the support for newline-delimited JSON (also known as NDJSON or JSON-lines) as input to jqp.

Example input:

{"name": "Gilbert", "wins": [["straight", "7♣"], ["one pair", "10♥"]]}
{"name": "Alexa", "wins": [["two pair", "4♠"], ["two pair", "9♠"]]}
{"name": "May", "wins": []}
{"name": "Deloise", "wins": [["three of a kind", "5♣"]]}

jqp:

image

Also some new catppuccin 🎨 themes added by @noahmayr (see catppuccin-macchiato in use in above screenshot) and a nice way to save jqp output to the clipboard when no file is provided when saving the output @rvictorino.

What's Changed

New Contributors

Full Changelog: https://github.com/noahgorstein/jqp/compare/v0.5.0...v0.6.0