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

blind-push-gateway-cli

v0.1.1

Published

CLI for blind-push-gateway

Readme

blind-push-gateway-cli

POC - This is a proof-of-concept still. Breaking changes possible till the V1 release.

CLI to run the blind-push-gateway service. It listens on Hyperswarm, accepts forward-push RPC requests, and forwards them through Firebase Cloud Messaging.

Uses blind-push-gateway under the hood.

Install

npm install -g blind-push-gateway-cli

Usage

blind-push-gateway run [options]

Create a config file at ~/.blind-push-gateway/config.json:

{
  "certPath": "./service-account.json",
  "notification": {
    "title": "Keet",
    "body": "✉️"
  },
  "apnsTopic": "io.keet.app"
}

Then run:

blind-push-gateway run

The service logs its public key on startup. Clients can connect to that swarm key and send forward-push RPC requests.

Config

  • certPath: path to a Firebase service account JSON file, relative to the config file. Required unless --dry-run is set.
  • notification: default notification payload shown to users.
  • apnsTopic: APNS topic, defaults to io.keet.app.

Example config for dry-run / local testing:

{
  "notification": {
    "title": "Keet",
    "body": "✉️"
  },
  "apnsTopic": "io.keet.app"
}
blind-push-gateway run --dry-run --bootstrap '[{"host":"127.0.0.1","port":49737}]'

CLI Options

  • --config|-c [path]: config path, defaults to ~/.blind-push-gateway/config.json
  • --storage|-s [path]: storage path, defaults to ~/.blind-push-gateway/storage
  • --dry-run: dry-run mode without Firebase; log push payloads instead of sending them
  • --bootstrap [bootstrap]: JSON array of HyperDHT bootstrap nodes. Use this to join a testnet or a custom DHT network
  • --scraper-public-key [scraper-public-key]: public key of a dht-prometheus scraper. Can be hex or z32.
  • --scraper-secret [scraper-secret]: secret of the dht-prometheus scraper. Can be hex or z32.
  • --scraper-alias [scraper-alias]: optional alias with which to register to the scraper

How It Works

  1. The operator starts the gateway with Firebase service account credentials (or with --dry-run).
  2. The gateway listens on Hyperswarm and accepts RPC connections through protomux-rpc-router.
  3. A client sends a forward-push request encoded with blind-push/encodings.
  4. The gateway encodes the request, derives Android/APNS fields, and forwards the message through the configured push service.