Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/ankitsin/react_boilerplate

Quick boilerplate with React, redux, webpack( with HMR) and redux dev tool
https://github.com/ankitsin/react_boilerplate

axios babel postcss-loader reactjs redux redux-logger redux-saga webpack2 yarn

Last synced: 3 days ago
JSON representation

Quick boilerplate with React, redux, webpack( with HMR) and redux dev tool

Awesome Lists containing this project

README

        

```
src/
├── index.html
├── src/index.js
├── src/base.css
├── src/assets/
├── src/actions/
├── src/components/
├── src/constants/
├── src/containers/
├── src/middleware/
├── src/reducers/
└── src/store/
```

- [x] [React](https://facebook.github.io/react/)
- [x] [Redux](https://github.com/reactjs/redux)
- [x] [React Router Redux](https://github.com/reactjs/react-router-redux)
- [x] [Webpack](https://webpack.github.io)
- [x] [Redux DevTools Extension](https://github.com/zalmoxisus/redux-devtools-extension)
- [x] [Babel](https://babeljs.io/)
- [x] [Autoprefixer](https://github.com/postcss/autoprefixer)
- [x] [PostCSS](https://github.com/postcss/postcss)
- [x] [CSS modules](https://github.com/outpunk/postcss-modules)

```
$ npm install yarn
$ yarn
```

## Watch & Hot Module Replace

### Run in dev mode
```
$ npm start
```

### Build project in Production

```
$ npm run build
```