1. Cross-format server config
DevOps engineerBackground
A deployment configuration is stored as JSON in one environment and YAML in another. The keys appear in a different order, but the server port may have changed.
Problem
Identify the meaningful configuration difference without treating key order as a change.
How to use
Enter the JSON configuration on the left, select JSON, enter the YAML configuration on the right, and select YAML.
Left: {"server":{"port":8080,"tags":["api","web"]}}
Right:
server:
tags: [api, web]
port: 9090Outcome
The comparison ignores the different key order and reports the server port value change.