* Function eXecution
Command-line JSON processing tool
Features
- Easy to use
- Standalone binary
- Interactive mode
ð - Streaming support
ð
Install
npm install -g fxOr via Homebrew
brew install fxOr download standalone binary from releases
bash <( curl -L https://fx.wtf )Usage
Start interactive mode without passing any arguments.
$ curl ... | fxOr by passing filename as first argument.
$ fx data.jsonPass a few JSON files.
cat foo.json bar.json baz.json | fx .messageUse 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
}Print formatted JSON to stdout.
$ curl ... | fx .Pipe JSON logs stream into fx.
$ kubectl logs ... -f | fx .messageAnd try this:
$ fx --lifeDocumentation
See full documentation.
Links
Related
- gofx â fx-like JSON tool (go)
- eat â converts anything into JSON
- ymlx â fx-like YAML cli processor
- fx-completion â bash completion for fx
- fx-theme-monokai â monokai theme
- fx-theme-night â night theme



