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

@daxence/captain-obfuscator

v0.1.0

Published

Deterministic string obfuscation for opaque identifiers, metadata, and URL-safe values.

Readme

captain-obfuscator

A small, deterministic string obfuscation library for opaque identifiers, metadata, and URL-safe values.

CI npm License: MIT

Installation

npm install @daxence/captain-obfuscator
# or
yarn add @daxence/captain-obfuscator

Quick start

import { obfuscate, deobfuscate, createObfuscator } from "@daxence/captain-obfuscator";

const encoded = obfuscate("customer-123", "my-key");
const decoded = deobfuscate(encoded, "my-key");

console.log(encoded);
console.log(decoded); // "customer-123"

const codec = createObfuscator("my-key");
console.log(codec.encode("hello world"));
console.log(codec.decode(codec.encode("hello world")));

Deterministic behavior

This library is designed to be deterministic: the same string and the same key always produce the same encoded output.

obfuscate("hello world", "my-key") === obfuscate("hello world", "my-key");

That makes it useful for generating stable opaque values for internal identifiers, metadata, or URL-safe tokens where reversibility is helpful and where equality should be preserved.

API

obfuscate(value: string, key: string): string

Returns a deterministic, URL-safe encoded string.

deobfuscate(value: string, key: string): string

Decodes a previously encoded string. Throws ObfuscationError for malformed input or invalid payloads.

createObfuscator(key: string): { encode(value: string): string; decode(value: string): string }

Creates a reusable codec bound to a single key.

Security considerations

This is not secure encryption and should not be described as such.

This library intentionally uses a deterministic, reversible encoding scheme built from a standard authenticated encryption primitive. That means:

  • it is useful for stable opaque identifiers and metadata transport
  • it is not suitable for password storage, session secrets, or sensitive data protection without a separate security design
  • the result leaks equality: identical plaintext and key yields identical encoded output
  • keys embedded in client-side JavaScript are not secrets
  • a wrong key should fail to decode and may throw a structured error

For a deeper threat model and guidance, see SECURITY.md.

Error handling

The library throws a small set of explicit errors for predictable behavior:

import { ObfuscationError, InvalidKeyError, InvalidPayloadError } from "@daxence/captain-obfuscator";

Common cases include:

  • empty or invalid key
  • malformed encoded value
  • payload version mismatch
  • authentication failure when decoding with the wrong key
  • corrupted data after the encoded payload

Compatibility and versioning

The encoded payload includes a version prefix so future releases can evolve the format without breaking older values. A major version bump is required before changing the encoding format in a way that is incompatible with previous payloads.

Development

git clone <repo>
yarn install
yarn test
yarn build

Contributing

Contributions are welcome. Please open an issue or PR with a clear description and tests.

License

MIT