Claude Code Boilerplate
FeaturesPricingBlogDocs
Get started →

Product

  • Features
  • Pricing
  • Skills

Compare

  • vs ShipFast
  • vs MakerKit
  • vs supastarter

Resources

  • Docs
  • Blog
  • Discord

Legal

  • License
  • Privacy Policy
  • Terms of Service
Claude Code Boilerplate

© 2026 Claude Code Boilerplate. All rights reserved.

Blog 35 posts

  1. 25.
    Background jobs in Next.js App Router on Vercel -- cron routes, job patterns, and secure triggersJun 13, 2026

    How to run background jobs in a Next.js SaaS on Vercel -- configuring vercel.json cron, writing a thin route handler that delegates to a service, and securing the endpoint so only Vercel can trigger it.

    nextjsvercelsaasdrizzle-ormclaude-code
  2. 26.
    API key management in Next.js -- issuing, hashing, and scoping keys with Drizzle ORMJun 12, 2026

    How to add API key authentication to a Next.js SaaS -- generating keys with crypto.randomBytes, storing only the SHA-256 hash in Drizzle ORM, and validating them in route handlers without ever persisting the plaintext secret.

    nextjsdrizzle-ormauthsaas
  3. 27.
    Full-text search in Next.js App Router with Drizzle ORM and Neon DBJun 10, 2026

    How to add full-text search to a Next.js SaaS using PostgreSQL tsvector, Drizzle ORM sql templates, a GIN expression index, and a URL-driven server component that composes cleanly with pagination.

    nextjsdrizzle-ormneon-dbsaas
  4. 28.
    Building a SaaS analytics dashboard with Recharts and Drizzle ORM in Next.js App RouterJun 9, 2026

    How to query aggregated data with Drizzle ORM, fetch it in a Next.js server component, and render it with a Recharts area chart that respects dark mode -- the full pattern for a SaaS dashboard.

    nextjsdrizzle-ormrechartssaasneon-db
  5. 29.
    Password reset in Next.js App Router -- JWT tokens, Resend email, and Drizzle ORMJun 8, 2026

    How to build a complete password reset flow in a Next.js App Router SaaS -- generating a signed JWT reset token, sending it via Resend, and updating the password hash with Drizzle ORM.

    nextjsauthjwtresenddrizzle-orm
  6. 30.
    Pagination in Next.js App Router with Drizzle ORM -- offset pagination for SaaS tablesJun 7, 2026

    How to build reusable offset pagination in a Next.js App Router SaaS -- parallel count and rows queries in Drizzle ORM, URL-driven page state in server components, and a shadcn Pagination component wired to search params.

    nextjsdrizzle-ormneon-dbsaas
123456