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

quantumshield-proxy

v1.0.1

Published

Zero-code-change Post-Quantum Security Reverse Proxy (NIST FIPS 203 ML-KEM-768)

Readme

⚡ QuantumShield Reverse Proxy (npm/npx)

Zero-Code-Change Post-Quantum Cryptography (PQC) Security Gateway
Implementing NIST FIPS 203 (ML-KEM-768 / CRYSTALS-Kyber) key encapsulation mechanism for web applications & payment APIs.

npm version License: MIT


🌟 Key Features

  • Instant npx Execution: No installation or build steps required. Run pure JavaScript ML-KEM-768 PQC proxy directly via npx quantumshield-proxy.
  • Zero Code Modification: Intercepts HTTP payment traffic on port 8443 and transparently forwards decrypted payloads to your upstream target application (e.g. http://localhost:3001).
  • NIST FIPS 203 ML-KEM-768 Standard: Uses @noble/post-quantum for pure JS key generation, encapsulation, and decapsulation.
  • Harvest Vault Interception: Intercepts and logs classical RSA and post-quantum Kyber ciphertexts for live quantum threat analysis.
  • Interactive Setup Wizard: Run without flags to launch an interactive CLI configuration wizard.

🚀 Quick Start

1. Instant Execution via npx

npx quantumshield-proxy

2. Custom Port & Upstream App Flags

npx quantumshield-proxy --upstream http://localhost:3001 --port 8443 --mode KYBER_PQC

⚙️ CLI Options

| Flag / Option | Short | Default | Description | |---|---|---|---| | --port | -p | 8443 | Port for the QuantumShield Proxy to listen on | | --upstream | -u | http://localhost:3001 | Upstream target web application URL | | --mode | -m | KYBER_PQC | Protection mode (KYBER_PQC or RSA_ONLY) | | --help | -h | - | Display help menu and CLI parameters |


📡 REST API Endpoints Exposed

| Method | Endpoint | Description | |---|---|---| | GET | /api/proxy/status | Current proxy state, active algorithm, and uptime | | POST | /api/proxy/activate | Dynamically toggle protection mode (KYBER_PQCRSA_ONLY) | | GET | /api/proxy/pubkey | Fetch ML-KEM-768 Public Key (1184-byte hex) | | POST | /api/proxy/pay/kyber | Decapsulate ML-KEM-768 ciphertext, decrypt payload & forward to upstream | | POST | /proxy/pay | Legacy RSA payment endpoint (intercepted & logged in vault) | | GET | /api/proxy/vault | Intercepted transaction vault records | | POST | /api/proxy/vault/clear | Reset harvest vault |


🔒 Security Specifications

  • Algorithm: NIST FIPS 203 (ML-KEM-768)
  • Security Level: Category 3 (Equivalent to AES-192 against Quantum Attacks)
  • Public Key Size: 1,184 Bytes
  • Ciphertext Size: 1,088 Bytes
  • Secret Key Size: 2,400 Bytes