You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Go to file
Anton Medvedev 8bbc8ed564 Add LICENSE 2 years ago
docs/images Add README.md 2 years ago
LICENSE Add LICENSE 2 years ago
README.md Add README.md 2 years ago
dict.go Refactor to use separate path vars 2 years ago
dict_test.go Refactor to use separate path vars 2 years ago
go.mod Add themes 2 years ago
go.sum Add themes 2 years ago
help.go Reimplement in go 2 years ago
keymap.go Refactor search result printing 2 years ago
main.go Add themes 2 years ago
parse.go Reimplement in go 2 years ago
parse_test.go Reimplement in go 2 years ago
print.go Add themes 2 years ago
reduce.go Add themes 2 years ago
reduce.js Add reduce 2 years ago
search.go Better handling of search edge cases 2 years ago
search_test.go Better handling of search edge cases 2 years ago
stringify.go Better handling of search edge cases 2 years ago
stringify_test.go Better handling of search edge cases 2 years ago
theme.go Add themes 2 years ago
traverse.go Reimplement in go 2 years ago
util.go Refactor search result printing 2 years ago
util_test.go Reimplement in go 2 years ago
viewport.go Refactor search result printing 2 years ago

README.md

fx

fx example

* Function eXecution

Install

go install github.com/antonmedv/fx

Or via Homebrew

TODO

Or download pre-built binary.

Usage

$ fx data.json

Or

$ curl ... | fx

Reducers

$ fx data.json '.filter(x => x.startsWith("a"))'

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

$ fx data.json '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 .[].commit.author

Pretty print.

$ curl ... | fx .

Documentation

See full documentation.

Themes

FX_THEME=1 FX_THEME=2 FX_THEME=3
FX_THEME=4 FX_THEME=5 FX_THEME=6
FX_THEME=7 FX_THEME=8 FX_THEME=9

License

MIT