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

@pikku/addon-stripe

v0.1.5

Published

Stripe payments and subscriptions: charges, refunds, customers, products, prices, coupons, sources, tokens, cards, meter events, subscriptions, invoices, checkout, payment intents, setup intents, Connect (marketplaces), and webhook handling.

Readme

@pikku/addon-stripe

Stripe payments and subscriptions: charges, refunds, customers, products, prices, coupons, sources, tokens, cards, meter events, subscriptions, invoices, checkout, payment intents, setup intents, Connect (marketplaces), and webhook handling.

Functions

Balance: balanceGet Charges: chargeCreate, chargeGet, chargeList, chargeUpdate Refunds: refundCreate, refundGet, refundList Coupons: couponCreate, couponList Customers: customerCreate, customerGet, customerDelete, customerUpdate, customerList Products: productCreate, productGet, productList, productUpdate Prices: priceCreate, priceGet, priceList, priceUpdate Sources: sourceCreate, sourceGet, sourceDelete Tokens: tokenCreate Customer Cards: customerCardAdd, customerCardGet, customerCardRemove Meter Events: meterEventCreate Subscriptions: subscriptionCreate, subscriptionGet, subscriptionUpdate, subscriptionCancel Invoices: invoiceCreate, invoiceGet, invoiceList, invoiceFinalize, invoiceSend, invoiceVoid, invoicePay, invoiceItemCreate Checkout: checkoutSessionCreate (existing priceId, or inline priceData + paymentIntentData/subscriptionData), billingPortalSessionCreate Payment Intents: paymentIntentCreate (off-session charge or client-side Elements — returns clientSecret), paymentIntentGet, paymentIntentConfirm, paymentIntentCapture, paymentIntentCancel Setup Intents: setupIntentCreate (save a card without charging), setupIntentGet Connect: accountCreate, accountGet, accountLinkCreate, transferCreate, payoutCreate Webhooks: stripeWebhookHandler

Webhooks

stripeWebhookHandler verifies the Stripe signature against the raw request body (STRIPE_WEBHOOK_SECRET) and publishes the verified event onto the stripe-webhook-event queue (exported as STRIPE_WEBHOOK_QUEUE). The consuming app owns the mapping by wiring the route and a queue worker:

import { addon } from '#pikku'
import { wireHTTPRoutes } from '#pikku/pikku-types.gen.js'
import { wireQueueWorker } from '#pikku/queue/pikku-queue-types.gen.js'
import { STRIPE_WEBHOOK_QUEUE } from '@pikku/addon-stripe'

wireHTTPRoutes({ routes: { stripe: { webhook: {
  method: 'post', route: '/webhooks/stripe',
  func: addon('stripe:stripeWebhookHandler'), auth: false,
} } } })

wireQueueWorker({ name: STRIPE_WEBHOOK_QUEUE, func: handleStripeEvent })

The host app must provide queueService (any pikku queue adapter — pg-boss, BullMQ, …) as a singleton service; the handler enqueues onto it.

Conventions

All function input/output fields are camelCase (e.g. unitAmount, clientSecret, hasMore), regardless of the underlying Stripe API's snake_case field names. Timestamp fields (created, currentPeriodEnd, arrivalDate, etc.) are ISO-8601 datetime strings, not raw Unix epoch seconds. The one exception is metadata: both its key names and its string values are passed through untouched in both directions, since a webhook consumer outside this addon reads metadata keys by exact match on the Stripe side. Money amounts stay integer minor units (cents), unconverted — only field names and dates are normalized.

Secrets

  • STRIPE_SECRET_KEY — Stripe secret key (sk_...)
  • STRIPE_WEBHOOK_SECRET — webhook signing secret (whsec_...)

Dependencies

  • stripe