https://github.com/drenther/react-ssr
Source code for the "React Server Side Rendering from Scratch" article
https://github.com/drenther/react-ssr
Last synced: about 1 month ago
JSON representation
Source code for the "React Server Side Rendering from Scratch" article
- Host: GitHub
- URL: https://github.com/drenther/react-ssr
- Owner: drenther
- Created: 2018-06-17T12:50:40.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-06-17T22:55:49.000Z (almost 7 years ago)
- Last Synced: 2025-04-26T16:13:19.611Z (about 1 month ago)
- Language: JavaScript
- Homepage: https://able.bio/drenther/react-server-side-rendering-from-scratch--43mfqwo
- Size: 304 KB
- Stars: 7
- Watchers: 2
- Forks: 8
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# React Server Side Rendering Example Code
This is the companion repository for the React Server-Side Rendering from Scratch article.
## Getting started
Fork and clone the git repo locally.
Then install the dependencies
```shell
npm install
```Starting the react server
```shell
npm start
```Starting the mock API server
```shell
npm run api
```## Note - This repo has some extra code like the modal. This is because in the future component-centrie code splitting will be added on top of it
## To be added
Code-splitting using React-Loadable (both route-centric and component-centric).