Most environment drift is invisible until a deploy breaks. Two .env files that look nearly identical can hide a changed database URL, a removed feature flag, or an added secret prefix — and eyeballing a couple of hundred lines of KEY=value is exactly how those differences slip past.
The .env Diff Tool compares two files by key name and reports only what matters: keys added in file B, keys removed from file A, and keys whose value changed, with both the old and new value shown. Ordinary unchanged keys stay out of the way, and a redaction toggle replaces values with [REDACTED] so the report can be shared without exposing secrets.
Matching is by key, not line order, so the output is a true semantic diff — deterministic, readable, and entirely computed in your browser.