mirror of
https://github.com/antonmedv/fx
synced 2024-11-03 15:40:12 +00:00
94 lines
1.4 KiB
Markdown
94 lines
1.4 KiB
Markdown
<p align="center"><a href="https://fx.wtf"><img src="https://medv.io/assets/fx/fx-preview.gif" width="500" alt="fx preview"></a></p>
|
|
|
|
_* Function eXecution_
|
|
|
|
## Features
|
|
|
|
- Mouse support
|
|
- Streaming support
|
|
- Preserves key order
|
|
- Preserves big numbers
|
|
|
|
## Install
|
|
|
|
```bash
|
|
brew install fx
|
|
```
|
|
```bash
|
|
snap install fx
|
|
```
|
|
```bash
|
|
scoop install fx
|
|
```
|
|
```bash
|
|
pacman -S fx
|
|
```
|
|
```bash
|
|
pkg install fx
|
|
```
|
|
```bash
|
|
go install github.com/antonmedv/fx@latest
|
|
```
|
|
|
|
Or download [pre-built binary](https://github.com/antonmedv/fx/releases).
|
|
|
|
## Usage
|
|
|
|
Start the interactive viewer via:
|
|
|
|
```bash
|
|
fx data.json
|
|
```
|
|
|
|
Or
|
|
|
|
```bash
|
|
curl ... | fx
|
|
```
|
|
|
|
Type `?` to see full list of key shortcuts.
|
|
|
|
Pretty print:
|
|
|
|
```bash
|
|
curl ... | fx .
|
|
```
|
|
|
|
### Reducers
|
|
|
|
Write reducers in your favorite language: [JavaScript](doc/doc.md#reducers) (default),
|
|
[Python](doc/doc.md#python), or [Ruby](doc/doc.md#ruby).
|
|
|
|
```bash
|
|
fx data.json '.filter(x => x.startsWith("a"))'
|
|
```
|
|
|
|
```bash
|
|
fx data.json '[x["age"] + i for i in range(10)]'
|
|
```
|
|
|
|
```bash
|
|
fx data.json 'x.to_a.map {|x| x[1]}'
|
|
```
|
|
|
|
## Documentation
|
|
|
|
See full [documentation](doc/doc.md).
|
|
|
|
## Themes
|
|
|
|
Theme can be configured by setting environment variable `FX_THEME` from `1`
|
|
to `9`:
|
|
|
|
```bash
|
|
export FX_THEME=9
|
|
```
|
|
|
|
<img width="1214" alt="themes" src="doc/images/themes.png">
|
|
|
|
Add your own themes in [theme.go](pkg/theme/theme.go) file.
|
|
|
|
## License
|
|
|
|
[MIT](LICENSE)
|