Comparing the implementations of a "Todo List" with and without Redux, in React, Angular and Vue.
This is a classical "Todo App" with the following features:
- Add item
- Mark item as done
- Remove item
- Show "Remain/Total" items status
- Filter items by category (all, active, completed)
git clone https://github.com/xebia-france/redux-react-angular-vue.git
# First, install all dependencies
npm run install-all
# Next, run each command in a different tab:
# Tab 1. Start Server
npm run server
# Tab 2. Start Angular app
npm run angular
# Tab 3. Start React app
npm run react
# Tab 4. Start Vue app
npm run vue
The live coding is available on branch live-coding
:
git checkout origin/live-coding