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

create-paywright-app

v0.1.1

Published

Scaffold a production-ready Stripe payment microservice (NestJS + TypeORM + BullMQ)

Readme

create-paywright-app

Scaffold a production-ready Stripe payment microservice in one command:

npx create-paywright-app my-payment-service

The generated service is a standalone NestJS application that owns your entire Stripe integration — customers, plans, one-time payments, subscriptions, invoices, and webhook processing. Your applications (any language, any stack) talk to it over a REST API and store only the returned IDs.

What you get

  • NestJS 11 + TypeScript with CQRS — thin controllers, command/query handlers per domain
  • PostgreSQL via TypeORM — migration-based schema, no auto-sync
  • Idempotent webhook pipeline — Stripe events are signature-verified on the raw body, deduplicated with a race-free ON CONFLICT insert, queued to BullMQ (Redis), and processed in the background with exponential retries
  • Resilient Stripe client — circuit breaker, retry with backoff, and timeouts (cockatiel) around every Stripe call; card declines are never retried, infrastructure failures are
  • Safe payments — amounts as integer cents, Stripe idempotency keys on writes, card data never touches the service (frontend confirms with a one-time clientSecret)
  • Security — timing-safe API-key guard, Helmet, rate limiting, env validation at boot (refuses to start misconfigured)
  • Operations/health (DB + Redis readiness), Prometheus /metrics, structured Pino logs, Swagger UI at /api/docs
  • Docker Compose dev environment — app + Postgres + Redis + pgAdmin

Usage

npx create-paywright-app my-payment-service
cd my-payment-service
# edit .env — set STRIPE_SECRET_KEY, STRIPE_WEBHOOK_SECRET, API_KEY
docker compose up -d postgres redis
npm run migration:run
npm run start:dev

Health check: curl http://localhost:3000/health — API docs at http://localhost:3000/api/docs

CLI options

npx create-paywright-app [project-name] [options]

  -y, --yes        accept all defaults, no prompts (for CI)
  --skip-install   scaffold without running npm install

API surface

All routes under /api/v1, guarded by an x-api-key header:

| Domain | Endpoints | |---|---| | Customers | create, get, list, update, delete | | Plans | create (Stripe product + price), get, list, archive | | Payments | create intent, get, list, cancel, refund | | Subscriptions | create (with optional trial), get, list, cancel | | Invoices | get, list (read-only, synced from Stripe webhooks) |

Infrastructure routes (no API key): GET /health, GET /metrics, POST /webhooks/stripe (Stripe signature-verified).

How a payment flows

Your backend   →  POST /api/v1/payments         →  service  →  Stripe
Your backend   ←  { clientSecret }              ←  service
Your frontend  →  stripe.confirmPayment(clientSecret)  →  Stripe
Stripe         →  POST /webhooks/stripe (signed)       →  service
                  verified → deduplicated → queued → status synced

Subscription renewals, payment failures, and cancellations arrive the same way — as webhooks that keep the local mirror in sync automatically.

The scaffolded project ships with a full README covering environment variables, webhook setup with the Stripe CLI, payment and subscription walkthroughs, and test cards.

License

MIT © Dev Parikh