https://github.com/maxh1t/react-ssr-basics-example
SSR React app showcasing basic SSR, routing, and a production-ready setup.
https://github.com/maxh1t/react-ssr-basics-example
express javascript nodejs react react-router reactjs rendertostring ssr typescript vite
Last synced: 3 months ago
JSON representation
SSR React app showcasing basic SSR, routing, and a production-ready setup.
- Host: GitHub
- URL: https://github.com/maxh1t/react-ssr-basics-example
- Owner: maxh1t
- Created: 2024-12-22T02:10:25.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-03T03:44:34.000Z (over 1 year ago)
- Last Synced: 2026-01-03T14:39:00.255Z (6 months ago)
- Topics: express, javascript, nodejs, react, react-router, reactjs, rendertostring, ssr, typescript, vite
- Language: TypeScript
- Homepage: https://dev.to/maxh1t/building-production-ready-ssr-react-applications-4bne
- Size: 61.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# React SSR Basics Example
The example of a server-side rendered (SSR) React application.
This repository complements the article: [Building Production-Ready SSR React Applications](https://dev.to/maxh1t/building-production-ready-ssr-react-applications-4bne)
## Features
- Implementation SSR
- Routing
- Production-Ready Setup
## Run Project
Install Dependencies:
```shell
pnpm install
```
Development Mode:
```shell
pnpm dev
```
Production Mode:
```shell
pnpm build && pnpm start
```