<script src="https://cdn.jsdelivr.net/npm/fast-json-patch@3.1.1/dist/fast-json-patch.min.js"></script>
<script>
// Add this in your benchmark setup code
function diff(t,e,r={cyclesFix:!0},s=[]){
const richTypes={Date:!0,RegExp:!0,String:!0,Number:!0};
let a=[];
const c=Array.isArray(t);
for(const i in t){
const o=t[i],n=c?+i:i;
if(!(i in e)){a.push({type:"REMOVE",path:[n],oldValue:t[i]});continue}
const p=e[i],y="object"==typeof o&&"object"==typeof p&&Array.isArray(o)===Array.isArray(p);
!(o&&p&&y)||richTypes[Object.getPrototypeOf(o)?.constructor?.name]||r.cyclesFix&&s.includes(o)?o===p||Number.isNaN(o)&&Number.isNaN(p)||y&&(isNaN(o)?o+""==p+"":+o==+p)||a.push({path:[n],type:"CHANGE",value:p,oldValue:o}):a.push.apply(a,diff(o,p,r,r.cyclesFix?s.concat([o]):[]).map((t=>(t.path.unshift(n),t))))
}
const i=Array.isArray(e);
for(const r in e)r in t||a.push({type:"CREATE",path:[i?+r:r],value:e[r]});
return a
}
// Now you can use 'diff' in your benchmark tests
</script>
obj1= {
name: "Argentina",
cities: [
{
name: 'Buenos Aires',
population: 13028000,
},
{
name: 'Cordoba',
population: 1430023,
},
{
name: 'Rosario',
population: 1136286,
},
{
name: 'Mendoza',
population: 901126,
},
{
name: 'San Miguel de Tucuman',
population: 800000,
}
]
};
obj2= {
name: "Argentina",
cities: [
{
name: 'Cordoba',
population: 1430023,
},
{
name: 'Mendoza',
population: 901126,
},
{
name: 'San Miguel de Tucuman',
population: 550000,
}
]
};
var diff1 = diff(obj1, obj2);
/*var objnew = jsonpatch.deepClone(obj1);
// jsondiffpatch.unpatch(objnew, diff1);*/
var diff3 = jsonpatch.compare(obj1, obj2);
/*var objnew = jsonpatch.deepClone(obj1);
jsonpatch.applyPatch(objnew, diff3, false, true);*/
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
microdiff | |
FAST JSON-patch |
Test name | Executions per second |
---|---|
microdiff | 318247.4 Ops/sec |
FAST JSON-patch | 1635221.1 Ops/sec |
The benchmark you are investigating compares the performance of two libraries used for computing differences (or diffs) between two JSON objects in JavaScript: microdiff and fast-json-patch. These libraries are useful for detecting changes between two JavaScript objects or arrays, which is a common requirement when synchronizing client-side states, optimizing API data transfers, or managing state in UI frameworks.
microdiff:
diff
function that is crafted to identify differences between two objects while handling complex cases like cycles in object references.fast-json-patch:
jsonpatch.compare
method compares two objects and produces a patch that describes how to transform the first object into the second. The library also includes methods for applying these patches.The benchmark runs two specific tests:
microdiff:
diff
function to calculate the differences between obj1
and obj2
.FAST JSON-patch:
jsonpatch.compare
to find differences between the same two objects.Execution Speed:
fast-json-patch
significantly outperformed microdiff
in terms of execution speed. This can be attributed to its optimized algorithms for dealing with more complex objects and a richer set of functionalities it offers.Pros and Cons:
microdiff Pros:
microdiff Cons:
fast-json-patch Pros:
fast-json-patch Cons:
When selecting between these libraries, consider:
fast-json-patch
might be the right choice due to its efficiency.fast-json-patch
has broader community support and is more likely to receive regular updates aligned with the ever-evolving JSON-related standards.In conclusion, the choice between microdiff
and fast-json-patch
(or other alternatives) depends on specific project needs, the complexity of the data, and performance requirements.