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

@pigeonflow/qchat

v1.5.0

Published

Disposable group chat. One command, one QR code, zero signup.

Downloads

773

Readme

qchat

qchat terminal

Disposable group chat. One command, one QR code, zero signup.

Spin up an instant chat room from your terminal. Share the QR code — people scan it and join from their phone browser. No app to install. Room self-destructs when done.

Install

npx @pigeonflow/qchat

That's it. No global install needed.

Usage

# Start a local chat room (default: 60 min TTL)
npx @pigeonflow/qchat

# Public mode — accessible from anywhere via Cloudflare tunnel
npx @pigeonflow/qchat --public

# Custom room name
npx @pigeonflow/qchat --name "Team Standup"

# Persist mode — room stays open until everyone leaves
npx @pigeonflow/qchat --persist

# Password-protected room
npx @pigeonflow/qchat --password secret123

# Custom TTL (30 minutes)
npx @pigeonflow/qchat --ttl 30

# Combine flags
npx @pigeonflow/qchat --public --name "Workshop" --persist --password demo

Options

| Flag | Description | Default | |------|-------------|---------| | -p, --port <n> | Port to serve on | Random (3000-9000) | | -t, --ttl <min> | Room expires after N minutes | 60 | | -n, --name <s> | Room display name | Chat Room | | -m, --max <n> | Max participants | 50 | | --password <s> | Require password to join | None | | --public | Expose via Cloudflare tunnel | Off | | --persist | No TTL — room lives until empty | Off |

How it works

  1. You run npx @pigeonflow/qchat on your machine
  2. A QR code appears in your terminal
  3. People scan it → opens a chat in their phone browser
  4. Real-time messaging via WebSocket
  5. Room auto-expires after TTL (or when everyone leaves in persist mode)
  6. Ctrl+C closes everything

Public mode

By default, qchat runs on your local network. Add --public to make it accessible from anywhere:

npx @pigeonflow/qchat --public

This starts a Cloudflare tunnel — your room gets a public HTTPS URL like https://random-words.trycloudflare.com/room/abc123. First run downloads the cloudflared binary (~25MB, cached at ~/.qchat/bin/).

Add to Home Screen

The chat UI is a PWA. Users can tap "📲 Add to Home" in the header to save it as an app shortcut on their phone — instant access without opening a browser.

Use cases

  • Meetings — quick throwaway chat for a standup or call
  • Workshops — audience Q&A without installing anything
  • Events — conference hallway chat, party coordination
  • Classrooms — real-time backchannel
  • LAN parties — local network, no internet needed

Features

  • 📱 WhatsApp-style mobile-first UI (dark theme)
  • 🔒 Optional password protection
  • ⏱️ Configurable TTL or persist-until-empty mode
  • 🌐 Public mode via Cloudflare tunnel
  • 📲 PWA — installable as home screen shortcut
  • 💬 Typing indicators, read ticks, color-coded names
  • 🔄 Device ID tracking (reconnect handling, name memory)
  • 📷 QR code in terminal + shareable SVG endpoint

License

MIT

Links