Is there any library/script to compare two JSONs objects and show the diff between them?
Thanks
EDIT: I want to do that using python OR jquery/javascript
Is there any library/script to compare two JSONs objects and show the diff between them?
Thanks
EDIT: I want to do that using python OR jquery/javascript
comparing the two JSONs is very simple (in all languages) - you just compare the strings.
showing the diffs is a little more complicated - i guess that one need to deserialize the JSONs and compare the objects.