Skip to content

morlim/jqr

Folders and files

NameName
Last commit message
Last commit date

Latest commit

59a7f7a · Feb 25, 2025

History

9 Commits
Feb 25, 2025
Feb 25, 2025
Feb 25, 2025
Feb 25, 2025
Feb 25, 2025
Feb 25, 2025
Feb 25, 2025
Feb 25, 2025

Repository files navigation

jqr

jqr is a very simple command-line tool for pretty-printing, querying, and converting JSON and YAML data.

Features

  • Pretty-print JSON data
  • Extract values using JSONPath queries
  • Convert JSON to YAML
  • Convert YAML to JSON

Installation

Prerequisites

Ensure you have Rust installed. If not, install it using Rustup:

curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

Build the project

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 .

Usage

Pretty-print JSON

jqr file.json

or from stdin:

cat file.json | jqr

Extract values using JSONPath

jqr file.json '$.user.name'

Example JSON:

{
  "user": {
    "name": "Alice",
    "age": 30
  }
}

Command:

jqr file.json '$.user.name'

Output:

"Alice"

Convert JSON to YAML

jqr file.json --to-yaml

Example output:

user:
  name: Alice
  age: 30

Convert YAML to JSON

jqr file.yaml --to-json

Example YAML:

user:
  name: Alice
  age: 30

Output:

{
  "user": {
    "name": "Alice",
    "age": 30
  }
}

Testing

Run the test suite with:

cargo test

Contributing

  1. Fork the repository
  2. Create a new branch (git checkout -b feature-branch)
  3. Make your changes and commit (git commit -am 'Add new feature')
  4. Push to the branch (git push origin feature-branch)
  5. Create a pull request

License

This project is licensed under the MIT License.

Author

Daniel Morlim

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages