Next
Everything on SkillVeris tagged Next — collected across the glossary, study notes, blog, and cheat sheets.
16 resources across 1 library
Study Notes(16)
Loops in VB.NET
Master repetitive control flow in VB.NET using For...Next, While, Do loops, and For Each, including loop control statements like Exit and Continue.
Authentication Patterns in Next.js
How to implement session-based and token-based authentication in Next.js, protect routes with middleware, and handle auth in Server Components and Server Actio…
Building and Deploying a Next.js App
How to prepare a Next.js application for production, choose a hosting model, and ship it reliably to Vercel or a self-hosted environment.
Caching in Next.js
A tour of the four caching mechanisms in the Next.js App Router — Request Memoization, the Data Cache, the Full Route Cache, and the Router Cache — and how the…
Creating a Next.js Project
How to scaffold a new Next.js application with create-next-app, understand its generated project structure, and run the development server.
Environment Variables in Next.js
How Next.js loads .env files, the difference between server-only and NEXT_PUBLIC_-prefixed browser-exposed variables, and per-environment configuration.
Font Optimization
How next/font automatically self-hosts and optimizes web fonts to eliminate layout shift and remove external network requests.
Image Optimization with next/image
How the built-in Next.js Image component automatically resizes, lazy-loads, and serves modern image formats to improve performance.
Metadata and SEO in Next.js
Learn how to manage titles, descriptions, Open Graph tags, and structured metadata using the App Router's metadata object and generateMetadata, plus sitemap an…
Middleware in Next.js
Learn how middleware.ts intercepts requests on the Edge Runtime before they reach a route, and how to use it for redirects, rewrites, and authentication checks.
Next.js Interview Questions
A curated set of Next.js interview questions covering rendering strategies, the App Router, data fetching, and performance, with model answers.
Next.js Performance Optimization
Practical techniques for making Next.js apps fast: image and font optimization, code splitting, caching strategies, and Core Web Vitals.
Next.js Quick Reference
A condensed cheat sheet of core Next.js App Router APIs, file conventions, rendering rules, and common commands for fast lookup.
Revalidation Strategies
Understand time-based revalidation (ISR) and on-demand revalidation with revalidatePath and revalidateTag, and how to wire them into Server Actions and Route H…
Styling Approaches in Next.js
A practical comparison of the main ways to style Next.js apps: global CSS, CSS Modules, Tailwind CSS, and CSS-in-JS with styled-jsx.
What Is Next.js?
An introduction to Next.js, the React framework for production that adds routing, rendering strategies, and full-stack capabilities on top of React.