Skip to content

Search

Match titles, tags, and descriptions. Arrow keys to move,Enter to open,Esc to close.

Open from the page (not while typing in a field):/·KorCtrlK

    Blog series

    Building a Production Next.js App A reading track.

    A practical sequence for turning a fresh Next.js codebase into a product teams can lint, test, document, deploy, and secure with confidence.

    • Start to finish
    • A guided walkthrough from project structure to auth and delivery.
    • 8 posts
    Posts
    8

    Articles collected into this reading track.

    A guided walkthrough from project structure to auth and delivery.

    Publishing rhythm for this series.

    Focus areas
    4

    Recurring themes shaping the articles in this track.

    A series about shipping the whole system

    These posts are meant to be read as a progression, not as isolated tutorials. The throughline is simple: a production app needs more than screens. It needs conventions, review guardrails, tests, deployment checks, and authentication that still make sense months later.

    If you are building or rescuing a Next.js codebase, this series is the path I would want a team to have in front of them from day one.

    Next.jsTestingCI-CDArchitecture

    Posts

    Articles in this series.

    Read these in order if you want the clearest progression from foundations to deeper implementation decisions.

    Building the Best Next.js TypeScript Standard Vitest ESLint Configuration
    WritingGuide
    5 min read

    Building the Best Next.js TypeScript Standard Vitest ESLint Configuration

    Configure ESLint for Next.js with TypeScript and Vitest integration. Covers code quality rules, import conventions, and a scalable setup for React projects.

    In series: Building a Production Next.js App · Part 2

    Development Workflow with Husky for Next.js, ESLint, and Vitest Integration
    WritingTutorial
    3 min read

    Development Workflow with Husky for Next.js, ESLint, and Vitest Integration

    A practical Husky setup for Next.js projects so linting, testing, and pre-push checks become part of the team workflow instead of a last-minute cleanup step.

    In series: Building a Production Next.js App · Part 3

    Authentication and Authorization in Next.js Applications with Supabase
    WritingTutorial
    7 min read

    Authentication and Authorization in Next.js Applications with Supabase

    A practical approach to authentication and authorization in Next.js with Supabase, focused on SSR, route protection, and keeping auth logic understandable.

    In series: Building a Production Next.js App · Part 7