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

@paramant/connect

v1.0.0

Published

PARAMANT Ghost Pipe SDK — post-quantum burn-on-read transport

Readme

@paramant/connect

PARAMANT Ghost Pipe SDK for Node.js. Post-quantum burn-on-read secure transport.

Zero dependencies. Node.js >= 18.

Install

npm install @paramant/connect

Quick start

const { GhostPipe } = require('@paramant/connect');

// Sender
const sender = new GhostPipe({ apiKey: 'pk_live_...', device: 'sender-001' });
const hash = await sender.send(Buffer.from('confidential payload'));
console.log('hash:', hash);

// Receiver (different process / machine)
const receiver = new GhostPipe({ apiKey: 'pk_live_...', device: 'receiver-001' });
const data = await receiver.receive(hash);
console.log('received:', data.toString());
// blob is burned after receive — subsequent calls return 404

API

new GhostPipe(opts)

| Option | Type | Description | |--------|------|-------------| | apiKey | string | API key (required) | | device | string | Device identifier (required) | | relay | string | Override relay URL | | sector | string | Preferred sector: health iot legal finance |

Methods

| Method | Returns | Description | |--------|---------|-------------| | send(data, { ttl }) | Promise<string> | Encrypt and upload; returns hash | | receive(hash) | Promise<Buffer> | Download and decrypt; burns blob | | status(hash) | Promise<object> | Check blob status without consuming | | health() | Promise<object> | Relay health info | | audit(limit) | Promise<Array> | Fetch your audit log | | listen(onReceive) | Promise<void> | Poll for incoming messages |

new GhostPipeCluster(opts)

Multi-relay failover client. Same API as GhostPipe, automatically fails over to a healthy relay.

const { GhostPipeCluster } = require('@paramant/connect');
const cluster = new GhostPipeCluster({ apiKey: 'pk_live_...', device: 'device-001' });
const hash = await cluster.send(data);
cluster.destroy(); // stop health monitor

Protocol

  • Encryption: ECDH P-256 + HKDF-SHA256 + AES-256-GCM
  • Burn-on-read: blob is deleted server-side after first receive()
  • Zero persistence: relay stores nothing after delivery
  • Sectors: EU/DE Hetzner nodes + Fly.io anycast

License

BUSL-1.1 — paramant.app