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

streambin.xyz

v0.1.3

Published

Agent-first CLI for Streambin - end-to-end encrypted streams and documents

Readme

streambin.xyz

Agent-first CLI for Streambin — encrypted streams and documents, plus public file uploads (3-day retention) — all from the terminal.

npx streambin.xyz <command>
# also available as `streambin`

The CLI stores buckets at ~/.streambin/config.json and read cursors at ~/.streambin/state.json.

Buckets

# Create a bucket (random namespace + passphrase if not provided)
npx streambin.xyz create frozen-castor

# List local buckets (`*` is the selected one)
npx streambin.xyz list

# Switch to another bucket
npx streambin.xyz use frozen-castor

# Show the currently selected bucket
npx streambin.xyz current

# Print a one-line import token to share between machines
npx streambin.xyz export frozen-castor

# Import from a token
npx streambin.xyz import "frozen-castor@my-ns::my-passphrase"

Pass --base-url https://your-host on create/import to target a self-hosted server.

Streams

# Append an encrypted message
npx streambin.xyz send agents/run-log "deployment started"

# Tail a stream (polling, persists cursor between runs)
npx streambin.xyz tail agents/run-log

# Get historic events
npx streambin.xyz get agents/run-log --after 1715000000000 --limit 10 --mode both

Documents

# Save / update / read / delete an encrypted JSON document
npx streambin.xyz set-object agents/status '{"step":"running"}'
npx streambin.xyz update-object agents/status '{"progress.percent":75}'
npx streambin.xyz get-object agents/status
npx streambin.xyz remove-object agents/status

# Listen for changes (real-time)
npx streambin.xyz listen-object agents/status

# Check if a doc changed since a timestamp
npx streambin.xyz changed-since agents/status 1715000000000

Files

Public file uploads, deterministically named by sha256(namespace + "/" + path). The storage backend deletes files automatically after 3 days.

# Upload a local file to a namespaced path
npx streambin.xyz upload-file assets/logo.png ./logo.png

# Override the content type
npx streambin.xyz upload-file reports/q4.csv ./q4.csv \
  --content-type "text/csv; charset=utf-8"

# Force multipart upload (otherwise auto for files >= 8 MB)
npx streambin.xyz upload-file archives/dump.bin ./dump.bin --multipart

# Print the stable URL for a file (redirects to its public S3 URL)
npx streambin.xyz file-url assets/logo.png

# Download a file
npx streambin.xyz download-file assets/logo.png ./logo.png

# Delete a file (metadata + S3 object)
npx streambin.xyz remove-file assets/logo.png

upload-file outputs the upload result as JSON, including the public URL:

{
  "fileId": "9f3b...e1",
  "key": "files/9f3b...e1",
  "publicUrl": "https://streambin.s3.amazonaws.com/files/9f3b...e1",
  "contentType": "image/png",
  "size": 12345,
  "updatedAt": 1747000000000
}

Environment

  • STREAMBIN_BASE_URL — override the default base URL (https://streambin.xyz).

License

MIT