Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thomasrogerlux/typescript-react-ssr-boilerplate
Boilerplate made from scratch to setup a TypeScript ReactJS application using Server Side Rendering
https://github.com/thomasrogerlux/typescript-react-ssr-boilerplate
boilerplate material-ui react redux typescript
Last synced: 3 days ago
JSON representation
Boilerplate made from scratch to setup a TypeScript ReactJS application using Server Side Rendering
- Host: GitHub
- URL: https://github.com/thomasrogerlux/typescript-react-ssr-boilerplate
- Owner: thomasrogerlux
- Created: 2018-06-25T07:43:56.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-09-30T20:19:32.000Z (about 6 years ago)
- Last Synced: 2024-08-01T13:22:32.283Z (3 months ago)
- Topics: boilerplate, material-ui, react, redux, typescript
- Language: TypeScript
- Homepage:
- Size: 41 KB
- Stars: 32
- Watchers: 2
- Forks: 17
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Stack
### This boilerplate use the following tech stack:
- TypeScript, as the main language used
- Webpack, to bundle our source files
- React, to build our UI
- Redux, to manage the state of the app
- Express, as a simple server to render initial page
- Material UI, as a component library
- JSS, to style our components# Installation
### With Yarn
```
$> yarn install
$> yarn build
$> yarn start
```### With NPM
```
$> npm install
$> npm run build
$> npm run start
```# Usage
Access the app at `localhost:8080`