This is the sequel to this repo: https://github.com/guidovizoso/react-boilerplate
Installing:
git clone https://github.com/guidovizoso/react-redux-boilerplate.git
npm install
Commands:
npm run dev /* Runs webpack dev server and live reloading */
npm run start /* Runs webpack in production mode with optimizations */
├── src
│ ├── index.js // Renders everything
│ ├── App.jsx // Main component
│ ├── store.js // Redux store generator
│ ├── components // Pretty much explains itself
│ ├── actions // Dispatch executers
│ ├── reducers // Redux Reducers
│ └── assets // Images and stuff goes here
├── dist // Compiled files goes here
├── package.json
├── .babelrc
├── .eslintrc
├── webpack.common.js
├── webpack.dev.js
├── webpack.prod.js
└── .gitignore
- Default project > master branch
- Webpack
- Babel (env, react and stage-0)
- React
- Redux
- Styled Components
- ESlint
- Initial version
- Img support
- Optional SASS and PostCSS
- Testing support
💬 Made by Guido Vizoso <https://www.linkedin.com/in/guidovizoso/>