- Visually shows the differences between two JSONs.
- Added parts are highlighted with a green background.
- Deleted parts are highlighted with a red background and strikethrough.
How to Use
1. Enter the first JSON you want to compare in `JSON1`.
2. Enter the second JSON you want to compare in `JSON2`.
3. Click the `Start Comparison!` button.
4. Check the result in `Result`.
Example
1. Enter "{'hello':'world'}" in `JSON1`.
2. Enter "{'hello':'world~~~!!!'}" in `JSON2`.
3. Click the `Start Comparison!` button.
4. Checking `Result` will give you results like the following:
{'hello': 'world''world~~~!!!'}
Use Cases
- File Version Comparison
- Use Case
- Managing code changes.
- Description
- Used to check which settings have changed compared to the existing setup after adding new features.
- Configuration Comparison
- Use Case
- After software updates.
- Description
- Compares configuration files before and after updates to review changes.
- API Response Review
- Use Case
- After an API version update.
- Description
- Compares response formats between previous and new versions to review changes.
- Data Validation
- Use Case
- After a database migration.
- Description
- Compares JSON representations of old and new data to ensure the migration was successful.
- Document Revision Review
- Use Case
- When documents saved in JSON format are changed.
- Description
- Compares document revision histories to check for modifications and ensure no unintended changes.