Install Guide
Prerequisites
Node.js > 16 required.
Install to global
You can install jqf command with bun, npm or yarn.
with bun
$ bun install jqf --global
with npm
$ npm install jqf --global
with yarn
$ yarn global add jqf
Instant execution with npx
$ npx jqf -h
Quick Start with npx
You can try jqf instantly with npx.
$ echo '{"hello": "world"}' | npx jqf 'obj => obj.hello'
"world"