About HAR File Analyzer
A teammate sends you a network.har file as evidence that
the checkout page is slow on their machine. Your options for actually
reading it are limited: paste it into Google's HAR Analyzer (upload-
based, hosted), re-import it into your own DevTools (which messes up
your local Network tab state), or open it in a text editor and scroll
through 200 KB of JSON looking for the slow request. None of these
are great when the file might contain auth tokens, internal API
hostnames, or anything else you wouldn't paste into a public web
service.
This HAR file analyzer drops the JSON onto the page and renders the things you actually need in five seconds: a waterfall timeline showing per-request DNS / Connect / Wait / Receive phases, the top slowest requests sorted by total time, the largest responses by bytes, a status-code breakdown (2xx/3xx/4xx/5xx), a resource type split (XHR/JS/CSS/Image/Font/Document/Other) and a domain breakdown so you can see which third party is dragging the page down. The request list is filterable by URL substring, status code or type, and clicking any row expands to the full headers, cookies, query string and post body. Everything runs as JavaScript in the page — the HAR never uploads, and its embedded auth tokens stay on your machine.
Use it to triage a slow-page report from a colleague, debug a third-party script that's blocking page load, find the one image that weighs 5 MB, audit how many CDN domains a checkout flow touches, hand a customer-support engineer a sanitised summary instead of the raw file, or hunt down a 5xx in a HAR from a flaky CI run. Tested with Chrome, Firefox, Edge and Safari DevTools exports.