https://github.com/ozankasikci/react-redux-boilerplate
Simple and modular react&redux boilerplate with hot reload support.
https://github.com/ozankasikci/react-redux-boilerplate
Last synced: 3 months ago
JSON representation
Simple and modular react&redux boilerplate with hot reload support.
- Host: GitHub
- URL: https://github.com/ozankasikci/react-redux-boilerplate
- Owner: ozankasikci
- License: mit
- Created: 2018-02-22T11:34:42.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-02-22T21:36:28.000Z (over 7 years ago)
- Last Synced: 2025-01-07T11:49:46.142Z (5 months ago)
- Language: JavaScript
- Homepage:
- Size: 99.6 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# react-redux-boilerplate
## Why?Because every time i want to start a new react project, i start to look for a nice boilerplate.
Because setting up webpack and the build stream is harder than it needs to be.
## Installation
```bash
git clone https://github.com/ozankasikci/react-redux-boilerplate.git
npm i
npm start
```## Folder Structure
```
.
├── app # React/Redux code
│ └── action
│ └── components
│ └── containers
│ └── reducers
│ └── store
│ └── utils
│ └── index.js
│ └── index.tpl.html
│ └── routes.js
├── dist # Auto generated html/css/javascript code will be placed here
├── webpack-dev-server.js # Webpack development server for hot reload and continuous build stream
├── config.js # Application config (port number, proxy options etc.)
```