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
npx
Instant execution with $ npx jqf -h
npx
Quick Start with You can try jqf instantly with npx
.
$ echo '{"hello": "world"}' | npx jqf 'obj => obj.hello'
"world"