An open API service indexing awesome lists of open source software.

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.

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.)
```