Simple React-Redux App Boilerplate for a quick start.
It has easy initial examples of components, actions and reducers.
- Download repo
- npm install
- npm run dev
With "npm run dev", Webpack will start a new server listening on localhost:8080 serving the app with hot reload enabled.
Some pre-defined unit tests are ready to illustrate how to run tests against your react components
- npm test
The tests are executed using Jest along with Enzyme, every dependency needed is on the package.json and will be installed on the initial "npm install".
The next step is to add a deeper approach to unit test actions and reducers. All suggestions and pull requests are welcome.