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

mrbd-cli

v0.4.0

Published

Command-line tools for developing Meta Ray-Ban Display web apps.

Downloads

733

Readme

mrbd-cli

Command-line tools for developing Meta Ray-Ban Display web apps.

Commands

| Command | Description | | --- | --- | | mrbd start | Expose a local dev server through a hosted tunnel | | mrbd login | Sign in to your MRBD developer account | | mrbd logout | Sign out of your MRBD developer account | | mrbd whoami | Show the signed-in developer | | mrbd apps | Create, list, and edit your MRBD auth apps |

Run mrbd <command> --help for command-specific options.

Tunnel

npx mrbd-cli start

mrbd-cli start (alias: mrbd start) starts or connects to a local dev server, requests a short-lived tunnel session from MRBD hosting, installs a pinned frpc binary on first run, opens the tunnel, and prints a public HTTPS URL with a QR code.

The hosted tunnel service is intentionally not part of this public package. It owns relay configuration, auth tokens, rate limits, and abuse controls.

Developer account & auth apps

Sign in with your developer email. The CLI sends a 6-digit code and stores the resulting session in ~/.mrbd/credentials.json (file mode 600).

mrbd login                 # prompts for email, then the emailed code
mrbd login --email [email protected]
mrbd whoami
mrbd logout

Once signed in, manage the same auth apps that appear in the developer portal. These commands talk to MRBD's Supabase project directly; row-level security ensures you only ever see and edit apps you own.

# List your auth apps
mrbd apps list

# Show one app
mrbd apps get com.example.my-app

# Register a new auth app (a privacy policy is required)
mrbd apps create \
  --app-id com.example.my-app \
  --name "My App" \
  --origin https://my-app.example.com \
  --privacy-policy-url https://my-app.example.com/privacy

# ...or let MRBD generate the legal documents
mrbd apps create \
  --app-id com.example.my-app \
  --name "My App" \
  --origin https://my-app.example.com \
  --generate-privacy \
  --publisher-name "Example, Inc." \
  --legal-email [email protected]

# Update an app (only the fields you pass change)
mrbd apps update com.example.my-app --status disabled
mrbd apps update com.example.my-app --origin https://a.example.com --origin https://b.example.com

By default the CLI targets the local Supabase stack used for development. Point it at another instance with MRBD_SUPABASE_URL and MRBD_SUPABASE_PUBLISHABLE_KEY.