Command-line tool and terminal JSON viewer 🔥
Go to file
2022-05-08 18:09:28 +02:00
.github/workflows Update release.yml 2022-05-08 15:45:18 +02:00
doc Update doc.md 2022-05-08 18:09:28 +02:00
pkg Refactor reducers 2022-05-08 15:13:09 +02:00
snap Release 23.2.0 2022-05-08 13:48:23 +00:00
go.mod Drop flags 2022-05-08 14:20:04 +02:00
go.sum Drop flags 2022-05-08 14:20:04 +02:00
help.go Drop flags 2022-05-08 14:20:04 +02:00
keymap.go Refactor search result printing 2022-04-16 22:16:19 +02:00
LICENSE Add LICENSE 2022-04-16 22:16:19 +02:00
main.go Add FX_SHOW_SIZE config option 2022-05-08 16:15:13 +02:00
print.go Add FX_SHOW_SIZE config option 2022-05-08 16:15:13 +02:00
README.md Update README.md 2022-05-08 17:53:55 +02:00
search_test.go Move part of the code to pkg 2022-04-17 22:57:12 +02:00
search.go Better search cursor jumps 2022-05-03 22:57:23 +02:00
stream.go Refactor reducers 2022-05-08 15:13:09 +02:00
util_test.go Reimplement in go 2022-04-16 22:16:19 +02:00
util.go Add FX_SHOW_SIZE config option 2022-05-08 16:15:13 +02:00
version.go Release 23.2.0 2022-05-08 13:48:23 +00:00
viewport.go Move part of the code to pkg 2022-04-17 22:57:12 +02:00

fx preview

* Function eXecution

Features

  • Mouse support
  • Streaming support
  • Preserves key order
  • Preserves big numbers

Install

brew install fx
snap install fx
scoop install fx
pacman -S fx
pkg install fx
go install github.com/antonmedv/fx@latest

Or download pre-built binary.

Usage

Start the interactive viewer via:

fx data.json

Or

curl ... | fx

Type ? to see full list of key shortcuts.

Pretty print:

curl ... | fx .

Reducers

Write reducers in your favorite language: JavaScript (default), Python, or Ruby.

fx data.json '.filter(x => x.startsWith("a"))'
fx data.json '[x["age"] + i for i in range(10)]'
fx data.json 'x.to_a.map {|x| x[1]}'

Documentation

See full documentation.

Themes

Theme can be configured by setting environment variable FX_THEME from 1 to 9:

export FX_THEME=9
themes

Add your own themes in theme.go file.

License

MIT