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

scaffoldo

v0.2.1

Published

Next.js 15 SaaS starter CLI — scaffold a production Turborepo with Clerk auth, Supabase Postgres, Stripe payments, Resend email, PostHog analytics, and Sentry from one prompt.

Readme

scaffoldo

npm version npm downloads skills.sh CI license node

Launch a production-ready SaaS in 5 seconds, not 2 weeks.

The pain it solves

Every new SaaS needs the same plumbing before the first feature ships: auth, database, payments, email, analytics, error tracking, rate-limiting, logging. Wiring it all together — and getting it production-safe — usually takes 2–3 weeks per project. You make the same decisions, copy the same boilerplate, and re-debug the same webhook signatures every time.

scaffoldo collapses all of that into one command. It interviews you about your idea, then generates a Turborepo monorepo with every piece already wired together and ready to deploy.

Quick start

# Interactive — ~10 questions, scaffolds in ~5 seconds
npx scaffoldo init

# Non-interactive — drive from a JSON file
npx scaffoldo init --answers-file answers.json

Why scaffoldo

  • Production-ready out of the box. Sentry, structured logging, rate-limiting, and webhook signature checks are wired in — not left as TODOs.
  • Cheapest credible stack. Free tiers across the board; you can launch and run for around $20/month.
  • Two front doors. Use the CLI directly, or invoke /scaffold-saas inside Claude Code — same engine, same template, same output.
  • Every choice is justified. Each service has an ADR in docs/adr/ explaining why it was picked, not just what it is.

What's inside

A monorepo at <targetDir>/ with:

apps/web                 # Next.js 15 (App Router) — landing, dashboard, auth, settings
packages/auth            # Clerk helpers
packages/db              # Prisma + Supabase Postgres
packages/payments        # Stripe checkout, customer portal, webhooks
packages/email           # Resend transactional email
packages/analytics       # PostHog
packages/observability   # Sentry + pino logger
packages/cache           # Upstash Redis + ratelimit
packages/ai              # Pinecone vector search
packages/i18n            # next-intl (EN-only catalog by default)
packages/ui              # shadcn/ui + Tailwind v4
packages/core            # shared types + AppError hierarchy
packages/config          # eslint / tsconfig / tailwind presets
docs/setup.md            # how to sign up for each service and where keys go
docs/checklist.md        # the 15-feature launch checklist, scoped to your project
.env.example             # every env var the template references

.env.example lists every required key. docs/setup.md walks you through each service's signup. scaffoldo never touches real secrets — you paste them yourself.

The 15-item launch list

scaffoldo bakes in everything from the launch checklist:

  1. Auth · 2. Database · 3. Payments · 4. Security · 5. Frontend · 6. Backend · 7. Notifications · 8. Analytics · 9. Error handling · 10. Logging · 11. File storage · 12. Settings · 13. Onboarding · 14. Performance · 15. Landing page

Each item is wired to a real file in the template. See docs/checklist.md for the mapping and docs/adr/ for the architectural decisions behind it.

Two ways to use it

  • CLInpx scaffoldo init. Primary entry point, interactive prompts.

  • Claude skill — type /scaffold-saas inside Claude Code. The skill conducts the interview through chat, then shells out to the CLI. Install once with:

    npx skills add Segodnya/scaffoldo -g

    See CONTRIBUTING.md for project-local and CI-friendly install variants.

Documentation

Contributing

See CONTRIBUTING.md for dev setup, project layout, commit conventions, the release flow, and skill-install variants.

License

MIT