A fast, zero dependency object and array comparison library. Significantly faster than most other deep comparison libraries and has full TypeScript support.
Installations
npm install microdiff
Developer Guide
Typescript
Yes
Module System
ESM
Node Version
22.12.0
NPM Version
10.9.0
Score
99.8
Supply Chain
97.4
Quality
80
Maintenance
100
Vulnerability
100
License
Releases
v1.5.0 - Bug fixes and benchmark updates
Published on 24 Dec 2024
v1.4.0 - Bug fixes and consistency improvements
Published on 19 Mar 2024
TypeScript improvements, bugfixes, and testing improvements
Published on 14 Apr 2023
Optimizations, TypeScript improvements, and README updates
Published on 28 Jul 2022
Added old value to CHANGE and REMOVE (#17) + Performance optimization (#14)
Published on 26 Dec 2021
Improved performance; Added cycles option; Added number paths for arrays
Published on 13 Nov 2021
Contributors
Unable to fetch Contributors
Languages
JavaScript (92.15%)
TypeScript (7.85%)
Developer
AsyncBanana
Download Statistics
Total Downloads
11,520,407
Last Day
33,698
Last Week
153,495
Last Month
658,503
Last Year
6,149,328
GitHub Statistics
3,653 Stars
68 Commits
78 Forks
22 Watching
1 Branches
8 Contributors
Bundle Size
932.00 B
Minified
545.00 B
Minified + Gzipped
Package Meta Information
Latest Version
1.5.0
Package Id
microdiff@1.5.0
Unpacked Size
12.32 kB
Size
4.37 kB
File Count
7
NPM Version
10.9.0
Node Version
22.12.0
Publised On
24 Dec 2024
Total Downloads
Cumulative downloads
Total Downloads
11,520,407
Last day
-11.2%
33,698
Compared to previous day
Last week
-12.3%
153,495
Compared to previous week
Last month
17%
658,503
Compared to previous month
Last year
59.9%
6,149,328
Compared to previous year
Daily Downloads
Weekly Downloads
Monthly Downloads
Yearly Downloads
Dev Dependencies
7
Microdiff is a tiny (<1kb), fast, zero dependency object and array comparison library. It is significantly faster than most other deep comparison libraries, and has full TypeScript support.
💡 I recommend reading this blog post:
Building the fastest object and array differ for an explanation of how Microdiff achieves its size and speed.
Features
- 🚀 More than double the speed of other object diff libraries
- 📦 Extremely lightweight, <1kb minified
- 🌎 Supports Deno, Node, Bun, the web, and even service workers. Also comes with built-in Typescript types
- 🔰 Very easy to use, having just a single
diff()
function - 📅 Full support for objects like
new Date()
andnew RegExp()
Get started
First, install Microdiff
npm i microdiff
If you are using Deno, you can import it from Deno.land with the link https://deno.land/x/microdiff@VERSION/index.ts
(remember to change @VERSION
to the version you want to use).
After you install it, import it and run it on two objects.
1import diff from "microdiff"; 2 3const obj1 = { 4 originalProperty: true, 5}; 6const obj2 = { 7 originalProperty: true, 8 newProperty: "new", 9}; 10 11console.log(diff(obj1, obj2)); 12// [{type: "CREATE", path: ["newProperty"], value: "new"}]
If you are using CommonJS, you can import it like this:
1const diff = require("microdiff").default;
There are three different types of changes: CREATE
, REMOVE
, and CHANGE
.
The path
property gives a path to the property in the new object (or the old object in the case of REMOVE
).
Each element in the paths is a key to the next property a level deeper until you get to the property changed, and it is a string or a number, depending on whether the object is an Array or Object (Objects with number keys will still be strings).
The value
property exists in types CREATE
and CHANGE
, and it contains the value of the property added/changed/deleted.
The oldValue
property exists in the type CHANGE
and REMOVE
, and it contains the old value of the property.
Cycles support
By default, Microdiff supports cyclical references, but if you are sure that the object has no cycles like parsed JSON, you can disable cycles using the cyclesFix
option.
1diff(obj1, obj2, { cyclesFix: false });
Benchmarks
Geometric mean of time per operation relative to Microdiff (no cycles) (100%==equal time, lower is better)
microdiff (no cycles): 100%
microdiff: 149%
deep-diff: 197%
deep-object-diff: 288%
jsDiff: 1565%
These results are from a suite of benchmarks matching real world use cases of multiple open-source repos using various diffing algorithm, running under Node 22.12.0 on a Ryzen 7950x clocked at ~4.30 GHz. The benchmarks are run through mitata to minimize random variation and time most accurately. You can view the full benchmark code in bench.js and the benchmarks themselves at benchmarks/applied.
Of course, these benchmarks should be taken with a grain of salt due to the inherent errors present in benchmarking JavaScript, but if you want to run them on your own computer in your own runtime/setup, run bench.js
.
Contributing
Thanks for helping the project out! Contributing is pretty simple. Fork the repository (if you need more information on how to do this, check out this GitHub guide), clone it to your computer, and start programming! To compile the program, run npm run build
(replace npm
with pnpm
or yarn
if you are using one of those). This will create CommonJS and ESM modules in /dist
.
To benchmark microdiff, you can run npm run bench
. This will automatically build Microdiff and run a benchmarking program comparing microdiff to other common diffing libraries.
Finally, Microdiff has an extensive test suite which you should take advantage of. To make sure everything is working correctly, you can run npm run test
. npm run test
builds the project and then runs the entire test suite on the new version. If you are fixing a bug, be sure to add a test for that.
Also, make sure you read the Code of Conduct before contributing.
No vulnerabilities found.
No security vulnerabilities found.