HARific is an ultra fast and lightweight HAR file terminal toolkit
1.4K
harific is a high-performance HAR file toolkit for exploring HTTP Archive captures in the terminal.
This image packages the harific CLI so you can inspect, search, and generate HAR files without installing Go, Homebrew, or a local binary.
Images are published to both Docker Hub and GitHub Container Registry:
pb33f/harific:latest
ghcr.io/pb33f/harific:latestRelease tags are also published alongside latest. Images are available for linux/amd64 and linux/arm64.
docker run --rm pb33f/harific:latest version
docker run --rm ghcr.io/pb33f/harific:latest versionMount your current directory into /work and allocate a TTY for the interactive terminal UI:
docker run --rm -it \
-v "$PWD:/work:rw" \
pb33f/harific:latest \
view ./recording.harYou can also pass the HAR file directly:
docker run --rm -it \
-v "$PWD:/work:rw" \
pb33f/harific:latest \
./recording.hardocker run --rm -it \
-v "$PWD:/work:rw" \
pb33f/harific:latest \
view ./recording.har --verboseGenerate synthetic HAR data into the mounted working directory:
docker run --rm \
-v "$PWD:/work:rw" \
pb33f/harific:latest \
generate --entries 100 --output ./test.harUse injected terms and locations when building HAR fixtures for search testing:
docker run --rm \
-v "$PWD:/work:rw" \
pb33f/harific:latest \
generate \
--entries 1000 \
--inject apple,banana \
--locations url,request.body \
--output ./search-fixture.hardocker run --rm \
-v "$PWD:/work:rw" \
pb33f/harific:latest \
generate --fat-mode --entries 50 --output ./large.harharific is a product of Princess Beef Heavy Industries, LLC.
Content type
Image
Digest
sha256:3c3eec548…
Size
29.4 MB
Last updated
5 months ago
docker pull pb33f/harific