Command-line tool and terminal JSON viewer 🔥
Go to file
Anton Medvedev a58152469f Drop flags
2022-05-08 14:20:04 +02:00
.github/workflows Add brew to release.yml 2022-05-03 08:31:18 +02:00
docs Update preview 2022-04-25 22:41:54 +02:00
pkg Add TODO 2022-05-04 00:07:01 +02:00
snap Release 23.1.0 2022-05-05 07:04:21 +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 Drop flags 2022-05-08 14:20:04 +02:00
print.go Move part of the code to pkg 2022-04-17 22:57:12 +02:00
README.md Adding installation for FeeBSD (#204) 2022-05-06 07:40:05 +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 Add streaming support 2022-04-29 23:17:39 +02:00
util_test.go Reimplement in go 2022-04-16 22:16:19 +02:00
util.go Refactor search result printing 2022-04-16 22:16:19 +02:00
version.go Release 23.1.0 2022-05-05 07:04:21 +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.

export FX_LANG=node
fx data.json '.filter(x => x.startsWith("a"))'
export FX_LANG=python
fx data.json '[x["age"] + i for i in range(10)]'
export FX_LANG=ruby
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

License

MIT