Command-line tool and terminal JSON viewer 🔥
Go to file
2022-01-02 09:44:25 +03:00
.gitignore Add standalone binary dist 2018-01-27 06:44:19 +07:00
.travis.yml Update travis node version 2020-09-04 00:00:43 +02:00
bang.js Add edit-in-place feature 2019-12-09 13:24:33 +07:00
config.js Show status bar if pattern not found 2018-12-15 14:52:48 +07:00
DOCS.md Add shift left collapse (#144) 2020-10-26 13:50:09 +03:00
find.js Search on keys, not paths 2018-12-15 14:52:48 +07:00
fx.js Add shift left collapse (#144) 2020-10-26 13:50:09 +03:00
index.js fix: set exit code to zero when fx --version (#148) 2020-11-19 00:38:42 +03:00
LICENSE Update LICENSE 2019-01-30 10:17:39 +07:00
package.json Release 20.0.2 2020-09-15 10:53:34 +02:00
print.js Add lossless json 2019-12-13 12:48:43 +07:00
README.md Update README.md 2021-01-17 13:49:49 +03:00
reduce.js Prevent "reduce" name collision (#177) 2022-01-02 09:44:25 +03:00
std.js Use LosslessJSON in reduce function 2020-09-15 10:44:43 +02:00
stream.js Use LosslessJSON in reduce function 2020-09-15 10:44:43 +02:00
test.js Add support for .[] 2020-09-03 23:54:32 +02:00

fx logo

fx example

* Function eXecution

Build Status Npm Version Brew Version

Command-line JSON processing tool

Features

  • Easy to use
  • Standalone binary
  • Interactive mode 🎉
  • Streaming support 🌊

Install

npm install -g fx

Or via Homebrew

brew install fx

Or download standalone binary from releases

Usage

Start interactive mode without passing any arguments.

$ curl ... | fx

Or by passing filename as first argument.

$ fx data.json

Pass a few JSON files.

cat foo.json bar.json baz.json | fx .message

Use full power of JavaScript.

$ curl ... | fx '.filter(x => x.startsWith("a"))'

Access all lodash (or ramda, etc) methods by using .fxrc file.

$ curl ... | fx '_.groupBy("commit.committer.name")' '_.mapValues(_.size)'

Update JSON using spread operator.

$ echo '{"count": 0}' | fx '{...this, count: 1}'
{
  "count": 1
}

Extract values from maps.

$ fx commits.json | fx .[].author.name

Print formatted JSON to stdout.

$ curl ... | fx .

Pipe JSON logs stream into fx.

$ kubectl logs ... -f | fx .message

And try this:

$ fx --life

Documentation

See full documentation.

License

MIT