Results for json

15 tools · 13 with a matching recipe

jq

CLI

Lightweight and flexible command-line JSON processor.

Extract a field from a JSON fileVerified macOS · Linux
jq -r '.name' package.json+6 more matching recipes
text-processing7 recipes · 6 verified

gh

CLI

GitHub's official CLI for managing repos, PRs, issues, and more.

List open pull requests as JSONVerified macOS
gh pr list --repo OWNER/REPO --state open --limit 5 --json number,title+4 more matching recipes
git9 recipes · 6 verified

yq

CLI

A lightweight YAML, JSON, and XML processor.

Convert YAML to JSONVerified macOS · Linux
yq -o=json '.' config.yaml+1 more matching recipe
text-processing5 recipes · 5 verified

miller

CLI

Like awk/sed/cut/join/sort for name-indexed data (CSV, JSON, TSV).

Convert CSV to JSON~98% est.
mlr --c2j cat data.csv
data3 recipes

sops

CLI

Secrets management tool supporting YAML, JSON, and .env files.

security3 recipes

httpie

CLI

Modern, user-friendly command-line HTTP client for the API era.

GET request with JSON response~98% est.
http GET api.example.com/users+1 more matching recipe
networking3 recipes

curl

CLI

Transfer data from or to a server using various protocols.

POST JSON from a fileVerified macOS · Linux
curl -sS -X POST -H 'Content-Type: application/json' -d @body.json https://api.example.com/items
networking8 recipes · 7 verified

hyperfine

CLI

A command-line benchmarking tool.

Export results as JSON~98% est.
hyperfine --export-json results.json 'command'
dev-tools3 recipes

ncdu

CLI

NCurses disk usage analyzer with an interactive interface.

Export result to file~97% est.
ncdu -o disk-usage.json ~
system3 recipes

nushell

CLI

A new type of shell that understands structured data.

Parse JSON from command~93% est.
http get https://api.github.com/repos/nushell/nushell | get stargazers_count
shell3 recipes

scc

CLI

Sloc cloc and code: fast and accurate code statistics.

Export as JSON~99% est.
scc --format json . > stats.json
dev-tools3 recipes

sqlite3

CLI

Command-line shell for SQLite databases. Preinstalled on macOS; apt install sqlite3 on Linux.

Run a query and get JSONVerified macOS · Linux
sqlite3 -json app.db 'SELECT id, name FROM users WHERE active = 1'
data5 recipes · 5 verified

tokei

CLI

Count lines of code across projects, by language.

Output as JSON~99% est.
tokei . -o json
dev-tools3 recipes

xh

CLI

Friendly and fast HTTP tool, reimplementation of HTTPie.

POST JSON data~97% est.
xh POST api.example.com/data key=value
networking3 recipes

duckdb

CLI

In-process analytical SQL database engine.

data2 recipes