Re: [go-nuts] JSON Compare

2023-09-14 Thread Petite Abeille
> On Sep 14, 2023, at 20:44, Sapna Jayavel wrote: > > Do we have any Go package to support this? # diff <(gron flare-2.json) <(gron flare-3.json) 15c15 < json.children[0].children[0].children[2].value = 6714; --- > json.children[0].children[0].children[2].value = 67144; https://github.com/to

[go-nuts] JSON Compare

2023-09-14 Thread Sapna Jayavel
I am implementing a method find difference between two JSON objects and it has to drill down recursively. My usecase has very large nested JSON objects. Response should have the data that has changed between two JSON and position of the object. Do we have any Go package to support this? I looke