Fx is terminal JSON viewer & processor.
In this release:
🔢 Go To Line (Vim-Style)
Quickly jump to any line using :42
syntax.

🧮 JSON Parsing Enhancements
- Support for special values:
Infinity
,-Infinity
,NaN
- New
--strict
flag to enforce standard-compliant JSON only

🛠 Fixes & Improvements
- Corrected object node previews
- More precise error messages
$ fx .anton/events.json --strict
Unexpected character 'I' on line 290519.
"confidence": Infinity,
..................^
🏃♂️ Data Utilities
- Added
walk
function for recursive data transformation:
walk(x => typeof x === "number" ? x.toString() : x)
- The
map
function now supports object mapping.