Skip to main content
DevTools24

فرق JSON

مقارنة كائني JSON دلالياً. شاهد بالضبط ما تمت إضافته أو إزالته أو تغييره بين الإصدارات.

Click "Compare JSON" to see differences
Added
Removed
Changed

JSON Diff - التفاصيل التقنية

JSON diff performs a deep comparison of two JSON structures, checking each property recursively. Unlike text diff, it understands JSON semantics - property order doesn't matter, and nested objects are compared properly. Useful for API response comparison and configuration changes.

بديل سطر الأوامر

# JSON diff with jq\njq -n --slurpfile a old.json --slurpfile b new.json '$a[0] != $b[0]'\n\n# With Python\nimport json\njson.load(open('a.json')) == json.load(open('b.json'))