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

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.

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
```