---
title: Rendering
description: Learn the differences between Next.js rendering environments, strategies, and runtimes.
url: "https://nextjs.org/docs/14/app/building-your-application/rendering"
version: 14.2.35
lastUpdated: 2023-11-16
prerequisites:
  - "Building Your Application: /docs/14/app/building-your-application"
---


Rendering converts the code you write into user interfaces. React and Next.js allow you to create hybrid web applications where parts of your code can be rendered on the server or the client. This section will help you understand the differences between these rendering environments, strategies, and runtimes.

## Fundamentals

To start, it's helpful to be familiar with three foundational web concepts:

* The [Environments](#rendering-environments) your application code can be executed in: the server and the client.
* The [Request-Response Lifecycle](#request-response-lifecycle) that's initiated when a user visits or interacts with your application.
* The [Network Boundary](#network-boundary) that separates server and client code.

### Rendering Environments

There are two environments where web applications can be rendered: the client and the server.

![Client and Server Environments](https://h8DxKfmAPhn8O0p3.public.blob.vercel-storage.com/docs/light/client-and-server-environments.png)

* The **client** refers to the browser on a user's device that sends a request to a server for your application code. It then turns the response from the server into a user interface.
* The **server** refers to the computer in a data center that stores your application code, receives requests from a client, and sends back an appropriate response.

Historically, developers had to use different languages (e.g. JavaScript, PHP) and frameworks when writing code for the server and the client. With React, developers can use the **same language** (JavaScript), and the **same framework** (e.g. Next.js or your framework of choice). This flexibility allows you to seamlessly write code for both environments without context switching.

However, each environment has its own set of capabilities and constraints. Therefore, the code you write for the server and the client is not always the same. There are certain operations (e.g. data fetching or managing user state) that are better suited for one environment over the other.

Understanding these differences is key to effectively using React and Next.js. We'll cover the differences and use cases in more detail on the [Server](/docs/app/building-your-application/rendering/server-components) and [Client](/docs/app/building-your-application/rendering/client-components) Components pages, for now, let's continue building on our foundation.

### Request-Response Lifecycle

Broadly speaking, all websites follow the same **Request-Response Lifecycle**:

1. **User Action:** The user interacts with a web application. This could be clicking a link, submitting a form, or typing a URL directly into the browser's address bar.
2. **HTTP Request:** The client sends an [HTTP](https://developer.mozilla.org/docs/Web/HTTP) request to the server that contains necessary information about what resources are being requested, what method is being used (e.g. `GET`, `POST`), and additional data if necessary.
3. **Server:** The server processes the request and responds with the appropriate resources. This process may take a couple of steps like routing, fetching data, etc.
4. **HTTP Response:** After processing the request, the server sends an HTTP response back to the client. This response contains a status code (which tells the client whether the request was successful or not) and requested resources (e.g. HTML, CSS, JavaScript, static assets, etc).
5. **Client:** The client parses the resources to render the user interface.
6. **User Action:** Once the user interface is rendered, the user can interact with it, and the whole process starts again.

A major part of building a hybrid web application is deciding how to split the work in the lifecycle, and where to place the Network Boundary.

### Network Boundary

In web development, the **Network Boundary** is a conceptual line that separates the different environments. For example, the client and the server, or the server and the data store.

In React, you choose where to place the client-server network boundary wherever it makes the most sense.

Behind the scenes, the work is split into two parts: the **client module graph** and the **server module graph**. The server module graph contains all the components that are rendered on the server, and the client module graph contains all components that are rendered on the client.

It may be helpful to think about module graphs as a visual representation of how files in your application depend on each other.

You can use the React `"use client"` convention to define the boundary. There's also a `"use server"` convention, which tells React to do some computational work on the server.

## Building Hybrid Applications

When working in these environments, it's helpful to think of the flow of the code in your application as **unidirectional**. In other words, during a response, your application code flows in one direction: from the server to the client.

If you need to access the server from the client, you send a **new** request to the server rather than re-use the same request. This makes it easier to understand where to render your components and where to place the Network Boundary.

In practice, this model encourages developers to think about what they want to execute on the server first, before sending the result to the client and making the application interactive.

This concept will become clearer when we look at how you can [interleave client and server components](/docs/app/building-your-application/rendering/composition-patterns) in the same component tree.

- [Server Components](/docs/14/app/building-your-application/rendering/server-components)
  - Learn how you can use React Server Components to render parts of your application on the server.
- [Client Components](/docs/14/app/building-your-application/rendering/client-components)
  - Learn how to use Client Components to render parts of your application on the client.
- [Composition Patterns](/docs/14/app/building-your-application/rendering/composition-patterns)
  - Recommended patterns for using Server and Client Components.
- [Edge and Node.js Runtimes](/docs/14/app/building-your-application/rendering/edge-and-nodejs-runtimes)
  - Learn about the switchable runtimes (Edge and Node.js) in Next.js.

---

For an index of all available documentation, see [/docs/14/llms.txt](/docs/14/llms.txt)