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.
- Host: GitHub
- URL: https://github.com/maxh1t/react-ssr-advanced-example
- Owner: maxh1t
- Created: 2024-12-22T02:14:21.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-04T00:49:13.000Z (over 1 year ago)
- Last Synced: 2025-06-01T17:03:39.793Z (about 1 year ago)
- Topics: express, javascript, lazy-loading, nodejs, react, react-router, reactjs, rendertopipeablestream, ssr, typescript, vite
- Language: TypeScript
- Homepage: https://dev.to/maxh1t/advanced-react-ssr-techniques-with-streaming-and-dynamic-data-mf6
- Size: 64.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```