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

filehasher-monorepo

v0.0.1

Published

Monorepo with a small **`@dork7/filehasher`** npm package (CLI + library) and a **Next.js** web UI. Data is protected with a **password using AES-256-GCM** (encryption you can reverse with the password). That is **not** one-way cryptographic hashing; if y

Readme

filehasher

Monorepo with a small @dork7/filehasher npm package (CLI + library) and a Next.js web UI. Data is protected with a password using AES-256-GCM (encryption you can reverse with the password). That is not one-way cryptographic hashing; if you need irreversible fingerprints, use a real hash (e.g. SHA-256) instead.

Packages

| Path | Description | |------|-------------| | packages/filehasher | Library (encrypt / decrypt) and CLI binary filehasher | | apps/web | Next.js app: paste text → download .fhc file; upload .fhc → decrypt |

Install (monorepo)

npm install
npm run build -w @dork7/filehasher
npm run build -w web   # optional, for production web build

CLI

From the repo root after building:

npx filehasher encrypt -i plain.txt -o secret.fhc -p "your password"
npx filehasher decrypt -i secret.fhc -o plain.txt -p "your password"

Omit -p to be prompted (encrypt prompts for confirmation).

One-way file hash (SHA-256 by default; any name accepted by Node’s crypto.createHash):

npx filehasher hash README.md
npx filehasher hash -i README.md -a sha512
echo -n "hello" | npx filehasher hash
npm run hash -- ./path/to/file   # from repo root (forwards args after --)

Web app

npm run dev

Open the printed local URL. Encrypt tab downloads encrypted.fhc; Decrypt tab accepts the same format (including files produced by the CLI).

Publishing the npm package

The published name is @dork7/filehasher (scoped; unscoped filehasher is blocked by npm as too similar to file-hasher).

npm run publish:filehasher