Introduction
Diff Viewer compares two blocks of text and highlights exactly what changed between them. Added lines show up in green, removed lines in red, and untouched lines stay in a neutral shade so your eye can land straight on the delta. It is the same shape of output that git diff produces on the command line, but rendered in the browser with no setup.
Reaching for a diff is the default move whenever you suspect a change was made: two copies of a config file, yesterday's production build vs. today's, a patch someone emailed you, the result of a refactor that should have been a no-op. Seeing the changes side by side turns a vague question ("did anything move?") into a concrete answer.
The diff computation runs locally in your browser using a Longest Common Subsequence algorithm, the same technique Git uses. Neither the original nor the modified text leaves the tab, which keeps the tool usable for proprietary source, infrastructure configs, and other material that should not be uploaded to third-party services.