Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 1.13 KB

README.md

File metadata and controls

21 lines (15 loc) · 1.13 KB

React Days Fall 2023 - SRR in React hands-on exercises

This repository provides starters for the three presented Frameworks (Next.js, Remix, and Gatsby) in order to create a microblog using SSR techniques. Pick the framework that interests you most and try to solve the tasks outlined in the individual framework folders' README.md.

Repository Layout

The backend folder contains a json-server based backend acting as a shared CRUD API for managing Post objects for your microblog. To run the server:

cd backend
npm install
npm run backend

If you get connection refused errors when trying to access the backend, you might need to run npm run backend-ips instead of npm run backend.

The framework folders nextjs, remix and gatsby contain starter setups for each of the respective frameworks. Some of the starters include some prepared code or components to help you get started without worrying too much about things not related directly to the SSR setups.

For more details refer to the individual README files within echo of the framework folders.