Original
Modified
TOML Diff
Compare two TOML documents and highlight added, removed, and modified keys. Review configuration changes without leaving the browser.
TOML Diff Use Cases
- Reviewing configuration changes between two releases
- Comparing environment-specific TOML settings
- Checking generated TOML against an expected version
- Inspecting pyproject.toml or toolchain changes before commit
TOML Diff FAQ
Is TOML Diff a text diff or a structural diff?
It is structural. Both inputs are parsed as TOML first, then the resulting data is compared by keys, arrays, and values.
Can I compare invalid TOML documents?
No. Both inputs must be valid TOML. If either side fails to parse, the tool will indicate which side is invalid.