HTML Preparation code:
x
 
1
<script type='text/javascript' src="https://cdn.jsdelivr.net/npm/jsondiffpatch/dist/jsondiffpatch.umd.min.js"></script>
2
<script src="https://cdn.jsdelivr.net/npm/deep-diff@1/dist/deep-diff.min.js"></script>
3
<script src="https://cdn.jsdelivr.net/npm/fast-json-patch@3.1.1/dist/fast-json-patch.min.js"></script>
4
<script>
5
  // Add this in your benchmark setup code
6
function diff(t,e,r={cyclesFix:!0},s=[]){
7
  const richTypes={Date:!0,RegExp:!0,String:!0,Number:!0};
8
  let a=[];
9
  const c=Array.isArray(t);
10
  for(const i in t){
11
    const o=t[i],n=c?+i:i;
12
    if(!(i in e)){a.push({type:"REMOVE",path:[n],oldValue:t[i]});continue}
13
    const p=e[i],y="object"==typeof o&&"object"==typeof p&&Array.isArray(o)===Array.isArray(p);
14
    !(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))))
15
  }
16
  const i=Array.isArray(e);
17
  for(const r in e)r in t||a.push({type:"CREATE",path:[i?+r:r],value:e[r]});
18
  return a
19
}
20
21
// Now you can use 'diff' in your benchmark tests
22
</script>
23
24
25
Script Preparation code:
 
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,
        }
        ]
    };
Tests:
  • jsondiffpatch

     
    var diff1 = jsondiffpatch.diff(obj1, obj2);
    /*var objnew = jsonpatch.deepClone(obj1);
    // jsondiffpatch.unpatch(objnew, diff1);*/
  • jsonpatch

     
    var diff3 = jsonpatch.compare(obj1, obj2);
    /*var objnew = jsonpatch.deepClone(obj1);
    jsonpatch.applyPatch(objnew, diff3, false, true);*/
  • microdiff

     
    var diff3 = diff(obj1, obj2);
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    jsondiffpatch
    jsonpatch
    microdiff

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 22 days ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36
Chrome 134 on Windows
View result in a separate tab
Test name Executions per second
jsondiffpatch 332404.7 Ops/sec
jsonpatch 1269733.2 Ops/sec
microdiff 218043.2 Ops/sec