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

@f-keys/tip-widget

v0.1.3

Published

Embeddable multi-method tip QR web component for streamers and creators. One <script> tag, zero dependencies, nothing leaves the browser. Deep-links to crypto (BIP-21) + PayPal, Cash App, Venmo, Ko-fi. No account, no custody, no fees.

Readme

@f-keys/tip-widget — <tip-stream>

npm license dependencies gzip network calls

An embeddable, multi-method tip QR web component for streamers and creators. One <script> tag, zero dependencies, nothing leaves the browser. It renders a branded, scannable QR + method picker that deep-links straight to your own wallets and payment links — crypto (Bitcoin, Ethereum, Dogecoin, Solana, and more via BIP-21) plus PayPal, Cash App, Venmo, and Ko-fi.

No account. No custody. No platform fee. The widget never touches money — it just points supporters at destinations you control.

Looking for a free, no-account, client-side tip QR you can drop into any page or OBS overlay? That's this.


Install

Script tag (no build step):

<script src="https://tipstreams.com/widget/tip-stream.js"></script>

npm:

npm install @f-keys/tip-widget
import "@f-keys/tip-widget"; // registers the <tip-stream> custom element

Use

<tip-stream name="@you" accent="#f7931a" theme="dark">
  <script type="application/json">
  {
    "heading": "Tip me",
    "methods": [
      { "type": "bitcoin", "address": "YOUR_BTC_ADDRESS" },
      { "type": "paypal",  "handle": "yourname" },
      { "type": "cashapp", "handle": "$yourtag" }
    ]
  }
  </script>
</tip-stream>

That's the whole integration. The component reads its config from the inline JSON, builds a deep link per method, and renders a scannable QR the viewer's phone/wallet opens directly.


Configuration

| Attribute | Default | Description | |-----------|---------|-------------| | name | — | Creator handle shown in the header | | heading | Tip me| Card title | | accent | #f7931a | Brand/accent color (any CSS color) | | theme | dark | dark or light |

name, heading, accent, and theme may also be set inside the JSON config.

Methods

Each entry in methods is one payment option.

Crypto (rendered as BIP-21 wallet deep links — scanning opens the viewer's wallet with your address pre-filled):

{ "type": "bitcoin", "address": "bc1q...", "amount": "0.001" }

Supported types: bitcoin, ethereum, litecoin, dogecoin, bitcoincash, monero, solana. amount is optional.

Fiat / links:

{ "type": "paypal",  "handle": "yourname" }        // → paypal.me/yourname
{ "type": "cashapp", "handle": "$yourtag" }        // → cash.app/$yourtag
{ "type": "venmo",   "handle": "@yourname" }       // → venmo.com/u/yourname
{ "type": "kofi",    "label": "Ko-fi", "url": "https://ko-fi.com/you" }
{ "type": "custom",  "label": "Any link", "url": "https://..." }

Any method may pass an explicit url to override the generated link, and a label to override the display name.


Events

The element emits a tip-select event when a method is chosen:

document.querySelector("tip-stream")
  .addEventListener("tip-select", (e) => console.log(e.detail.uri));

Why it's different

  • No account, no custody, no cut. It renders a QR/link to destinations you already own.
  • Nothing leaves the browser. Addresses are encoded client-side — no network requests, no tracking, no backend.
  • Portable. Works in any HTML: your site, a bio page, Notion, or an OBS browser source.
  • Tiny & self-contained. ~32 KB, one file, no runtime dependencies.

License

MIT © F-Keys. Bundled QR encoder © Kazuhiko Arase (MIT).

<tip-stream> is part of TipStreams, a flagship project of F-Keys — a studio that ships portable creator widgets.