Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mrsarm/react-ssr-service
Page fully rendered server-side with Express.js and React.js.
https://github.com/mrsarm/react-ssr-service
Last synced: about 1 month ago
JSON representation
Page fully rendered server-side with Express.js and React.js.
- Host: GitHub
- URL: https://github.com/mrsarm/react-ssr-service
- Owner: mrsarm
- Created: 2024-04-05T23:29:23.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-09-28T19:45:31.000Z (about 2 months ago)
- Last Synced: 2024-10-03T16:30:57.528Z (about 1 month ago)
- Language: TypeScript
- Size: 1.59 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# React Server Side Rendering (SSR) service
Example webapp service to render HTML dynamically in the server side with React.
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app),
but changed a lot to use React only in the server-side.If you need React in the client side, just use **Create React App** and skip this example,
and if you need to build an isomorphic web app with React (an app that can render in the server and
the client side as well), you should use a framework like *Next.js* or *Remix* instead.The purpose of a service like this could be to build reports in HTML format
in a server using React templates.> 🚧 Under construction.
## Available Scripts
In the project directory, you can run among other scripts:
### `yarn start:dev`
Runs the app in the development mode.\
Open http://localhost:3001 to view it in the browser.The page will reload if you make edits.\
You will also see any lint errors in the console.### `yarn test`
Launches the test runner in the interactive watch mode.\
See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.### `yarn build`
Builds the app for production to the `build` folder.
## Access the app
- Home: http://localhost:3001
- Status: http://localhost:3001/status returns HTTP 204 and no content, useful for monitoring.
- Sum page: http://localhost:3001/sum?num1=2&num2=3 to sum 2 and 3.
- Sum page with a POST request:curl -X POST http://localhost:3001/sum \
-H Content-Type:application/json \
-d '{"num1": 10, "num2": 15}' -o report.htmlThis way is useful when you need to build an HTML report providing all
the input data, and providing it in the query string of a GET request may
not be the best solution if the input data is too big, or it has nested fields,
so posting it with a JSON body is a better solution than a GET request.## Docker
Build the image with the following command:
docker build -t react-ssr-service .
Run with:
docker run --name ssr -p 3001:3001 react-ssr-service
## About
Just a test project.
**Source Code**: https://github.com/mrsarm/react-ssr-service
**Authors**: Mariano Ruiz
2024 | Apache-2.0