The well-known TodoMVC built with React and Redux in a structured and testable way.
- CreateReactApp
- Components and Props
- Handling Events
- State and Lifecycle
- Redux
- React-Redux
- PropTypes
- Classnames
After installing the dependencies the following NPM scripts become available:
start: starts the application in development mode on http://localhost:9300build: bundles the application for production into thebuildfoldertest: runs unit and E2E teststest:unit: runs unit tests with Jest in thesrcfolder suffixed with*.spec.jstest:e2e: runs E2E tests with Cypress in thetests/e2efolder suffixed with*.spec.jsformat: formats the code with Prettier within thesrcfolderlint: lint files with ESLint based on Airbnb's styleguide and the Prettier config
Application is compatible with React devtools and Redux devtools
This implementation is part of a series where the same application was implemented with the same architecture.

