# JQ::Lite [](https://metacpan.org/pod/JQ::Lite) [](https://github.com/kawamurashingo/JQ-Lite) **JQ::Lite** is a lightweight, pure-Perl JSON query engine inspired by the [`jq`](https://stedolan.github.io/jq/) command-line tool. It allows you to extract, traverse, and filter JSON data using a simplified jq-like syntax — entirely within Perl. --- ## 🔧 Features - ✅ **Pure Perl** (no XS, no external binaries) - ✅ Dot notation (`.users[].name`) - ✅ Optional key access (`.nickname?`) - ✅ Array indexing and expansion (`.users[0]`, `.users[]`) - ✅ `select(...)` filters with `==`, `!=`, `<`, `>`, `and`, `or` - ✅ Built-in functions: `length`, `keys`, `first`, `last`, `reverse`, `sort`, `unique`, `has` - ✅ Command-line interface: `jq-lite` - ✅ Reads from STDIN or file --- ## 🤔 Why JQ::Lite (vs `jq` or `JSON::PP`)? | Use Case | Tool | |----------|------| | Simple JSON decode | ✅ `JSON::PP` | | Shell processing | ✅ `jq` | | jq-style queries in Perl | ✅ **JQ::Lite** | | Lightweight & portable | ✅ **JQ::Lite** | --- ## 📦 Installation ```sh perl Makefile.PL make make test make install ``` --- ## 🚀 Usage ### As a Perl module ```perl use JQ::Lite; my $json = '{"users":[{"name":"Alice"},{"name":"Bob"}]}'; my $jq = JQ::Lite->new; my @names = $jq->run_query($json, '.users[].name'); print join("\n", @names), "\n"; ``` ### As a command-line tool ```bash cat users.json | jq-lite '.users[].name' jq-lite '.users[] | select(.age > 25)' users.json jq-lite -r '.users[].name' users.json ``` > âš ï¸ `jq-lite` is named to avoid conflict with the real `jq`. --- ## 📘 Example Input ```json { "users": [ { "name": "Alice", "age": 30, "profile": { "active": true, "country": "US" } }, { "name": "Bob", "age": 25, "profile": { "active": false, "country": "JP" } } ] } ``` ### Example Queries ```bash jq-lite '.users[].name' users.json jq-lite '.users | length' users.json jq-lite '.users[0] | keys' users.json jq-lite '.users[].nickname?' users.json jq-lite '.users[] | select(.age > 25)' users.json jq-lite '.users[] | select(.profile.active == true) | .name' users.json jq-lite '.users | sort | reverse | first' users.json ``` --- ## 🧪 Testing ```bash prove -l t/ ``` --- ## 📦 CPAN 👉 [JQ::Lite on MetaCPAN](https://metacpan.org/pod/JQ::Lite) --- ## 📠License This module is released under the same terms as Perl itself. --- ## 👤 Author **Kawamura Shingo** 📧 pannakoota1@gmail.com 🔗 [GitHub @kawamurashingo](https://github.com/kawamurashingo/JQ-Lite)