jqr
is a very simple command-line tool for pretty-printing, querying, and converting JSON and YAML data.
- Pretty-print JSON data
- Extract values using JSONPath queries
- Convert JSON to YAML
- Convert YAML to JSON
Ensure you have Rust installed. If not, install it using Rustup:
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
Clone the repository and build the project using Cargo:
git clone https://github.com/your-repo/jqr.git
cd jqr
cargo build --release
To install jqr
globally:
cargo install --path .
jqr file.json
or from stdin:
cat file.json | jqr
jqr file.json '$.user.name'
Example JSON:
{
"user": {
"name": "Alice",
"age": 30
}
}
Command:
jqr file.json '$.user.name'
Output:
"Alice"
jqr file.json --to-yaml
Example output:
user:
name: Alice
age: 30
jqr file.yaml --to-json
Example YAML:
user:
name: Alice
age: 30
Output:
{
"user": {
"name": "Alice",
"age": 30
}
}
Run the test suite with:
cargo test
- Fork the repository
- Create a new branch (
git checkout -b feature-branch
) - Make your changes and commit (
git commit -am 'Add new feature'
) - Push to the branch (
git push origin feature-branch
) - Create a pull request
This project is licensed under the MIT License.
Daniel Morlim