Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/ankitsin/react_boilerplate
- Owner: ankitsin
- Created: 2017-09-07T11:03:28.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2017-12-09T21:25:18.000Z (almost 7 years ago)
- Last Synced: 2024-10-11T13:23:50.835Z (27 days ago)
- Topics: axios, babel, postcss-loader, reactjs, redux, redux-logger, redux-saga, webpack2, yarn
- Language: JavaScript
- Homepage:
- Size: 88.9 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```