←back to thread

JSON Patch

(zuplo.com)
299 points DataOverload | 4 comments | | HN request time: 0.313s | source
1. cachedthing0 ◴[] No.41881425[source]
I am using JSONDiffpatch made by Benjamín Eidelman some years in production now. It is perfect, works in a browser and on a node/cloudflare worker/etc. How does JSON Patch compare to JSONDiffpatch? It is not mentioned in the alternatives list.

https://github.com/benjamine/jsondiffpatch

replies(3): >>41881623 #>>41886441 #>>41895250 #
2. DataOverload ◴[] No.41881623[source]
Thanks for sharing, I'll try and find time to compare and write about it
3. kybernetikos ◴[] No.41886441[source]
How does it do with array insertion? I didn't like how most diffs handle them so I smashed together two pieces of code I found elsewhere to get something I thought was better. https://github.com/kybernetikos/fogsaadiff
4. Huppie ◴[] No.41895250[source]
I remember using that package (and it's compatible .NET implementation) ages ago, glad to see it's still around and being maintained.

I remember testing out various libraries (not sure if a proper JSON Patch library was already around back then, looking at the spec I think it should...) and picking it over all the others because it handled complex objects and arrays way better than all the others.

Would also love to see how it compares.