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

proofx

v1.0.0

Published

Protect and verify digital content with cryptographic watermarks and signatures. WASM-powered invisible watermarking + ProofX API signing.

Readme

ProofX

Protect and verify digital content with cryptographic watermarks and signatures.

WASM-powered invisible watermarking + ProofX API signing. One package, full content protection pipeline.

Install

npm install proofx

Quick Start

const ProofX = require('proofx');

const px = new ProofX({
  creatorId: 'YOUR_CREATOR_ID',  // Get free at proofx.co.uk
  apiKey: 'pk_live_...',          // Optional — get at proofx.co.uk/developer
});

// Protect an image (watermark + sign + embed signature)
const result = await px.protect('my-photo.png', { title: 'My Photo' });
// → result.image (protected Buffer), result.contentId, result.verifyUrl

// Protect text (hash + sign)
const doc = await px.protectText('My original article...', { title: 'My Article' });
// → doc.contentId, doc.verifyUrl

// Verify content
const check = await px.verify('sha256_hash_here');
// → { verified: true, creator_id: '...', timestamp: '...' }

// Verify an image file
const valid = await px.verifyImage('downloaded-image.png');

API

new ProofX(options)

| Option | Type | Required | Description | |--------|------|----------|-------------| | creatorId | string | Yes | Your 8-char creator ID from proofx.co.uk | | apiKey | string | No | API key for higher rate limits (pk_live_...) | | apiUrl | string | No | Custom API URL (default: api.proofx.co.uk) |

Methods

| Method | Description | |--------|-------------| | protect(image, opts) | Full protection: WASM watermark + hash + sign + embed signature | | protectText(text, opts) | Hash + sign text content | | verify(hash) | Verify content by SHA-256 hash | | verifyImage(image) | Hash an image and verify it | | hash(input) | Compute SHA-256 hash | | getCreator(id) | Look up a creator profile | | extractSignature(image) | Extract embedded signature from protected PNG | | perceptualHash(image) | Compute perceptual hash for fuzzy matching |

Rate Limits

| Plan | Daily Limit | Price | |------|------------|-------| | Free | 10 | $0 | | Creator | 100 | $9/mo | | Pro | 1,000 | $19/mo | | Studio | 10,000 | $49/mo |

Get API keys at proofx.co.uk/developer

Use Cases

  • AI image pipelines — auto-protect every generated image
  • CI/CD — sign assets on build
  • Publishing — protect articles before they go live
  • Music/audio — register tracks on creation
  • Legal — timestamp documents for evidence

How It Works

  1. WASM watermark — invisible marks in image pixels (survives screenshots, compression)
  2. SHA-256 hash — computed locally, never uploads your content
  3. Cryptographic signature — signed by ProofX KMS infrastructure
  4. Embedded proof — signature stored inside the PNG file

The protected image is self-verifying. Anyone can extract the signature and check it.

Links

License

MIT