Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/satishbabariya/minimal-react-ssr-typescript
a minimal sample of server side rendering using typescript + react
https://github.com/satishbabariya/minimal-react-ssr-typescript
react server-side-rendering typescript webpack
Last synced: 6 days ago
JSON representation
a minimal sample of server side rendering using typescript + react
- Host: GitHub
- URL: https://github.com/satishbabariya/minimal-react-ssr-typescript
- Owner: satishbabariya
- License: mit
- Created: 2019-05-19T08:43:16.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-12-07T02:07:24.000Z (11 months ago)
- Last Synced: 2024-08-01T20:51:42.316Z (3 months ago)
- Topics: react, server-side-rendering, typescript, webpack
- Language: TypeScript
- Size: 544 KB
- Stars: 8
- Watchers: 2
- Forks: 4
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
# minimal-react-ssr-typescript
A minimal sample of server side rendering using typescript + react## ❯ Getting Started
### Step 1: Set up the Development Environment
You need to set up your development environment before you can do anything.
Install [Node.js and NPM](https://nodejs.org/en/download/)
- on OSX use [homebrew](http://brew.sh) `brew install node`
- on Windows use [chocolatey](https://chocolatey.org/) `choco install nodejs`### Install
- Install all dependencies with `yarn install`
### Running in dev mode
- Run `yarn start`
- The server address will be displayed to you as `http://0.0.0.0:3000`### Building the project and run it
- Run `yarn build` to generated all JavaScript files from the TypeScript sources.
- the builded app located in `dist`.