Skip to main content
Version: 1.0.0

Installation and usage

Installation

JQL requires Node.js 20 or newer.

npm install --global @andreydem0505/jql

Confirm the installation:

jql --help

Inline mode

Pass a complete query to jql:

jql "select {name, email} from 'customers.json'"

Interactive mode

Run jql without a query:

$ jql
Current version: 1.0.0

Enter a JQL query. Type exit or press Ctrl+C to stop.
jql> select {name} from 'customers.json'