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

@agentine/signet

v0.1.0

Published

Deterministic object hashing for Node.js — drop-in replacement for object-hash

Readme

@agentine/signet

Deterministic object hashing for Node.js — drop-in replacement for object-hash.

  • TypeScript-first with full type safety
  • Zero runtime dependencies
  • ESM + CJS dual build
  • Node.js 18+
  • Byte-identical output to object-hash v3.0.0

Install

npm install @agentine/signet

Usage

import hash from '@agentine/signet';

// Default: sha1 + hex
hash({ foo: 'bar' });
// => '67b69634f9880a282c14a0f0cb3ba90cddb95014'

// Algorithm and encoding
hash(obj, { algorithm: 'sha256', encoding: 'base64' });

// Exclude keys
hash(obj, { excludeKeys: (key) => key.startsWith('_') });

// Hash structure only (keys, no values)
hash(obj, { excludeValues: true });

// Ignore prototype chain
hash(obj, { respectType: false });

// Sort arrays before hashing
hash(obj, { unorderedArrays: true });

// Sugar methods
hash.sha1(obj);
hash.MD5(obj);
hash.keys(obj);       // excludeValues + sha1
hash.keysMD5(obj);    // excludeValues + md5

// Streaming
hash.writeToStream(obj, options, stream);
hash.writeToStream(obj, stream); // options optional

Options

| Option | Type | Default | Description | |--------|------|---------|-------------| | algorithm | 'sha1' \| 'sha256' \| 'sha512' \| 'md5' \| 'passthrough' | 'sha1' | Hash algorithm | | encoding | 'hex' \| 'base64' \| 'buffer' \| 'binary' | 'hex' | Output encoding | | excludeKeys | (key: string) => boolean | — | Filter out object keys | | excludeValues | boolean | false | Hash keys only | | ignoreUnknown | boolean | false | Skip unknown types instead of throwing | | respectType | boolean | true | Include prototype/constructor in hash | | respectFunctionNames | boolean | true | Include function names | | respectFunctionProperties | boolean | true | Include function properties | | unorderedArrays | boolean | false | Sort arrays before hashing | | unorderedSets | boolean | true | Sort Sets/Maps before hashing | | unorderedObjects | boolean | true | Sort object keys | | replacer | (value: unknown) => unknown | — | Transform values before hashing |

Migrating from object-hash

Option 1: Direct replacement

-import hash from 'object-hash';
+import hash from '@agentine/signet';

Option 2: Compatibility layer

-const hash = require('object-hash');
+const hash = require('@agentine/signet/compat/object-hash');

Both produce identical hash output for all supported types.

Supported Types

Primitives: string, number, boolean, null, undefined, bigint, symbol. Objects: plain objects, class instances, null-prototype objects. Collections: Array, Set, Map, TypedArrays, ArrayBuffer, Buffer. Special: Date, RegExp, Error, URL, functions. Circular references are detected and handled.

License

MIT