npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@lukez/fast-deep-equal

v4.1.0

Published

Fast deep equal - but modern

Readme

fast-deep-equal

The fastest deep equal with ES6 Map, Set and Typed arrays support — now rewritten in TypeScript with dual ESM/CJS output.

npm License: MIT

[!WARNING] Since this is a modern rewrite, it may not be compatible with older environments. It could not support Node.js versions below 20, and it may not work in older browsers without polyfills. If you need support for older environments, consider using the original fast-deep-equal package.

It is also not a 100% drop-in replacement for the original, as you the default exports have been changed to named exports (equal and reactEqual). This was done to improve tree-shaking and ESM compatibility, but it may require some changes to your import statements.

Install

npm install @lukez/fast-deep-equal

Features

  • Written in TypeScript with type definitions included
  • Dual ESM + CJS output via tsdown
  • Requires Node.js 20+
  • Checks equality of Date and RegExp objects by value
  • Supports Map, Set, typed arrays (Int32Array, BigUint64Array, …)
  • React variant skips _owner circular references (ported from react-fast-compare)

Usage

import { equal } from "@lukez/fast-deep-equal";

equal({ foo: "bar" }, { foo: "bar" }); // true
equal(new Int32Array(), new Int32Array()); // true
equal(new Map([["a", 1]]), new Map([["a", 1]])); // true

React

Use the /react entry when comparing React elements. It avoids traversing _owner, which contains circular references and is irrelevant for element comparison:

import { reactEqual } from "@lukez/fast-deep-equal/react";

CJS

const equal = require("@lukez/fast-deep-equal");
const reactEqual = require("@lukez/fast-deep-equal/react");

Performance benchmark

Run it yourself against your own data — the only benchmark that matters is yours:

pnpm run benchmark # bun can also be used if installed globally

Note: the bundled benchmark compares against other popular libraries using the included test fixtures. Results vary by data shape and Node.js version.

Building from source

pnpm install
pnpm run build   # outputs to dist/
pnpm test        # runs vitest

License

MIT — © Evgeny Poberezkin (original), © 2026 LukeZ (this fork)