logifx is a cross-platform CLI tool written in Go that improves terminal logs
by parsing log levels and highlighting important information in real time.
It works with tools such as Maven, npm, Docker, and Go builds.
README
LogiFx
LogiFx is a lightweight cross-platform CLI tool that colorizes log output in real time.
Works on:
Windows
Linux
macOS (Intel & Apple Silicon)
Installation
🏗️ Build from source
git clone https://github.com/lhtuwrk/logifx.git
cd logifx
go build -o logifx ./cmd/logifx
Or use the provided build script:
./scripts/release.sh
Usage
✅ Recommended (Run Mode)
logifx mvn quarkus:dev
logifx npm run dev
This mode:
Handles Ctrl+C correctly
Works reliably on Windows
Avoids pipe buffering issues
⚠️ Pipe Mode (Limited)
mvn quarkus:dev | logifx
Pipe mode may not behave correctly on Windows terminals.
🔃 Version
logifx --version
Development
Run locally:
go run ./cmd/logifx mvn quarkus:dev
🏁 Release
git tag v1.0.0
git push --tags
./scripts/release.sh