https://github.com/rcalixte/jqview
hard fork of https://github.com/fiatjaf/jqview
https://github.com/rcalixte/jqview
go go-application linux qt qt6
Last synced: 10 months ago
JSON representation
hard fork of https://github.com/fiatjaf/jqview
- Host: GitHub
- URL: https://github.com/rcalixte/jqview
- Owner: rcalixte
- License: other
- Created: 2024-05-09T02:40:41.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-12-31T16:14:09.000Z (about 1 year ago)
- Last Synced: 2025-01-29T13:11:19.045Z (12 months ago)
- Topics: go, go-application, linux, qt, qt6
- Language: Go
- Homepage:
- Size: 99.6 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ./jqview [](https://github.com/fiatjaf/awesome-jq)
The simplest possible native GUI for inspecting JSON objects with [jq](https://stedolan.github.io/jq/manual/).
Made with [Qt](https://qt.io/) and [gojq](https://github.com/itchyny/gojq).
## Usage
```
~> echo '[{"name": "Mises"}, {"name": "Hayek"}, {"name": "Menger"}]' | jqview
```

```
~> echo '[{"name": "Mises"}, {"name": "Hayek"}, {"name": "Menger"}]' | jqview '.[].name'
```

```
~> echo '[{"name": "Mises"}, {"name": "Hayek"}, {"name": "Menger"}]' > names.json
~> jqview 'map(select(.name | startswith("M")))' names.json
```

## Installation
Download from [releases](https://github.com/fiatjaf/jqview/releases), or compile using instructions from [this table](https://github.com/therecipe/qt/wiki/Deploying-Application).