Skip to content
English
Back to directory

nextjs.org

200 OK

Next.js brings routing, rendering, and server features to React

Developer ToolsGoogle AnalyticsNext.jsReact

Detected technology

Detection reports visible public signatures and cannot enumerate private services.

Google Analytics

Detection reports visible public signatures and cannot enumerate private services.

Next.js

Detection reports visible public signatures and cannot enumerate private services.

React

Detection reports visible public signatures and cannot enumerate private services.

Vercel

Detection reports visible public signatures and cannot enumerate private services.

Detection reports visible public signatures and cannot enumerate private services.

The documented Next.js architecture

Next.js is built around React and provides a framework layer for routing, rendering, data access, server endpoints, compilation, and bundling. This describes the public programming model documented for applications; it does not reveal private infrastructure used to operate nextjs.org.

In the App Router, the route tree is organized through files for pages, layouts, loading states, errors, and related behavior. Layouts and pages are Server Components by default. Client Components define browser-executed subtrees for state, event handlers, effects, and browser-only APIs.

Public framework layers

Layer Documented responsibility
React components Compose the user interface and define server or client component trees
App Router or Pages Router Map application structure to routes using different Next.js models
Rendering system Produce prerendered or request-time output and coordinate streaming where applicable
Caching and revalidation Control reuse and freshness according to route and data behavior
Route Handlers Implement HTTP endpoints within an App Router application
Build tooling Compile and bundle application code and assets for supported deployments

A Next.js route may include server-rendered content and focused client interaction. The presence of a Client Component does not make every ancestor a browser-rendered application, although the chosen client boundary affects which modules are included for the browser.

Delivery choices

  • Static export produces files for projects that do not need unsupported server features.
  • Prerendering prepares route output before an individual request.
  • Dynamic rendering produces output using request-time information.
  • Caching and revalidation manage reuse and freshness between those extremes.
  • A compatible runtime is required for request-time and other server-dependent behavior.

The official deployment guide documents self-hosting and platform adapters, so Vercel is not a technical requirement for every Next.js application. Feature coverage can differ across environments. Teams should verify routing, caching, image behavior, revalidation, streaming, and Route Handlers against their selected target instead of inferring compatibility from a successful build.

Continue exploring

More published records in Developer Tools.

View all alternatives

How Astro turns content into HTML and adds interaction selectively

Developer ToolsTailwind CSS

Gatsby connects React websites to structured content and flexible rendering

Developer ToolsGoogle Analytics

nuxt.com

200 OK

Build Vue websites and applications with routing, server logic and flexible rendering

Developer ToolsNuxtVercel