Sign inSign up

pb33f/harific

By pb33f

Updated 5 months ago

HARific is an ultra fast and lightweight HAR file terminal toolkit

Image
Networking
API management
Monitoring & observability
0

1.4K

pb33f/harific repository overview

harific

harific Docker image

Docker Pulls GitHub discord

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

Images are published to both Docker Hub and GitHub Container Registry:

pb33f/harific:latest
ghcr.io/pb33f/harific:latest

Release tags are also published alongside latest. Images are available for linux/amd64 and linux/arm64.

Quick check

docker run --rm pb33f/harific:latest version
docker run --rm ghcr.io/pb33f/harific:latest version

View a HAR file

Mount 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.har

You can also pass the HAR file directly:

docker run --rm -it \
  -v "$PWD:/work:rw" \
  pb33f/harific:latest \
  ./recording.har

Verbose inspection

docker run --rm -it \
  -v "$PWD:/work:rw" \
  pb33f/harific:latest \
  view ./recording.har --verbose

Generate a test HAR file

Generate synthetic HAR data into the mounted working directory:

docker run --rm \
  -v "$PWD:/work:rw" \
  pb33f/harific:latest \
  generate --entries 100 --output ./test.har

Inject searchable terms

Use 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.har

Generate larger fixtures

docker run --rm \
  -v "$PWD:/work:rw" \
  pb33f/harific:latest \
  generate --fat-mode --entries 50 --output ./large.har

harific is a product of Princess Beef Heavy Industries, LLC.

Tag summary

Content type

Image

Digest

sha256:3c3eec548

Size

29.4 MB

Last updated

5 months ago

docker pull pb33f/harific