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

@paid-ai/embed

v0.2.0

Published

Browser SDK for embedding publicly-shareable Paid resources (value receipts today; invoices + customer portal later).

Downloads

1,935

Readme

@paid-ai/embed

Browser SDK for embedding publicly-shareable Paid resources in a host app.

Install

npm install @paid-ai/embed

Or drop the IIFE bundle into a <script> tag and use the global PaidEmbed.

Quick start — value receipt

Host your JWT minting on your backend (the signing secret comes from rotating it in the Paid settings UI).

import { renderValueReceipt } from "@paid-ai/embed";

// JWT is signed server-side; the SDK passes it to the iframe via postMessage.
const jwt = await fetch("/api/paid/mint-token", { method: "POST" }).then((r) =>
  r.text(),
);

renderValueReceipt({
  el: "#paid-vr",
  baseUrl: "https://app.paid.ai",
  token: valueReceiptPublicUrlToken, // from your database / Paid webhook
  jwt,
});

Rendering the latest VR for a customer

Mint a customer-scoped JWT (JWT with sub set to the customer id, and no resourceId claim), then resolve the freshest VR server-side via the REST API and pass its publicUrlToken to renderValueReceipt:

// server (your backend, with your Paid API key)
const { data } = await fetch(
  `https://api.agentpaid.io/api/v2/value-receipts?customerId=c_123&limit=1`,
  { headers: { Authorization: `Bearer ${PAID_API_KEY}` } },
).then((r) => r.json());
const token = data[0]?.publicUrlToken;

// browser
renderValueReceipt({
  el: "#paid-vr",
  baseUrl: "https://app.paid.ai",
  token,
  jwt, // customer-scoped, sub=c_123
});

Declarative mode

<script src="https://unpkg.com/@paid-ai/embed/dist/index.global.js"></script>
<div
  data-paid-embed
  data-kind="value-receipt"
  data-token="<publicUrlToken>"
  data-jwt="<jwt>"
></div>
<script>
  PaidEmbed.mountDeclarative("https://app.paid.ai");
</script>

Token transports

Default: postMessage. The iframe src is JWT-free; the SDK responds to a ready message with the token. This keeps the JWT out of the URL, history, and Referer.

Fallback: tokenTransport: "url". The JWT is appended as ?token= on the iframe src. Use only when you control neither the iframe nor its parent scripting environment (e.g. plain HTML emails — though even there, direct share URLs work equally well).

Example app

See @paid-ai/embed-example for a full working integration with JWT minting, embed rendering, and share-auth flows.

License

MIT