An open API service indexing awesome lists of open source software.

https://github.com/maxh1t/react-ssr-advanced-example

SSR React app with streaming, lazy-loaded pages, server-to-client data, and a production-ready setup.
https://github.com/maxh1t/react-ssr-advanced-example

express javascript lazy-loading nodejs react react-router reactjs rendertopipeablestream ssr typescript vite

Last synced: 2 months ago
JSON representation

SSR React app with streaming, lazy-loaded pages, server-to-client data, and a production-ready setup.

Awesome Lists containing this project

README

          

# React SSR Advanced Example

The example of a server-side rendered (SSR) React application.

This repository complements the article: [Advanced React SSR Techniques with Streaming and Dynamic Data](https://dev.to/maxh1t/advanced-react-ssr-techniques-with-streaming-and-dynamic-data-mf6)

## Features

- Streaming in SSR
- Lazy Loading
- Server-to-Client Data
- Production-Ready Setup

## Run Project

Install Dependencies:

```shell
pnpm install
```

Development Mode:

```shell
pnpm dev
```

Production Mode:

```shell
pnpm build && pnpm start
```