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

@heossihq/qnsi-agent

v0.1.2

Published

QNSP Host Agent — discovers cryptographic assets on customer servers and reports to the QNSP platform.

Readme

@heossihq/qnsi-agent

QNSI Host Agent — discovers cryptographic assets on your servers and reports them to the QNSI platform for inventory, exposure analysis, and PQC migration planning.

Part of the Quantum-Native Security Infrastructure (QNSI).

Installation

npm install -g @heossihq/qnsi-agent

Requires Node.js 20+. Installs the qnsp-agent binary globally.

Quick Start

1. Create a QNSI account

Sign up in one click at cloud.qnsi.heossi.com/auth with GitHub, Google, or email.

2. Register an agent

In the QNSI portal, go to Crypto Posture → Host Agents → Register Agent. Copy the Agent ID and Agent Secret (shown once only).

Or via API:

curl -sS -X POST \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -H "x-qnsp-tenant-id: $TENANT_ID" \
  -d '{"name": "web-01-prod"}' \
  https://api.qnsi.heossi.com/proxy/crypto/v1/agents

3. Configure and run

export QNSP_AGENT_ID=<agent-uuid>
export QNSP_AGENT_SECRET=<64-char-hex-secret>
export QNSP_ENDPOINT=https://api.qnsi.heossi.com
export QNSP_TENANT_ID=<tenant-uuid>

qnsp-agent run      # scan once and exit
qnsp-agent daemon   # run continuously (default: every 5 minutes)

Configuration

| Variable | Required | Default | Description | |---|---|---|---| | QNSP_AGENT_ID | ✅ | — | Agent UUID from the QNSI portal | | QNSP_AGENT_SECRET | ✅ | — | 64-char hex secret from registration | | QNSP_ENDPOINT | ✅ | — | https://api.qnsi.heossi.com | | QNSP_TENANT_ID | ✅ | — | Your tenant UUID | | QNSP_SCAN_PATHS | ❌ | /etc/ssl,/etc/pki,/etc/ssh,/home,/root,... | Comma-separated paths to scan | | QNSP_INTERVAL_SECS | ❌ | 300 | Daemon report interval in seconds (30–86400) | | QNSP_LOG_LEVEL | ❌ | info | silent, error, warn, info, debug | | QNSP_HOSTNAME | ❌ | os.hostname() | Override the reported hostname |

What the Agent Discovers

| Asset Type | Examples | |---|---| | SSH private keys | id_rsa, id_ecdsa, id_ed25519, *.key | | X.509 certificates | *.pem, *.crt, *.cer, *.der | | PKCS#12 keystores | *.p12, *.pfx | | JKS keystores | *.jks, *.keystore | | JWT signing keys | jwt*.pem, signing*.pem | | TLS endpoints | Active listeners on ports 443, 8443, etc. |

CLI Commands

qnsp-agent run         Scan the host once and exit
qnsp-agent daemon      Run continuously on the configured interval
qnsp-agent configure   Interactive setup wizard
qnsp-agent status      Print current config (secrets redacted)
qnsp-agent version     Print version
qnsp-agent help        Print help

Documentation

Requirements

  • Node.js >= 20.0.0
  • An active QNSI tenant — sign up free with GitHub, Google, or email
  • host-agent-ingestion feature enabled (contact your account team if not enabled)

License

Apache-2.0

© 2026 QNSI — HEOSSI, Singapore