This is an implementation of TodoMVC built using:
- React & ReactDOM 15.4.2
- Redux 3.6.0
- TypeScript 2.2.1
It is adapted from the redux TodoMVC example.
Read more about it in my blog post: http://jaysoo.ca/2015/09/26/typed-react-and-redux/
Requirement:
- NodeJS 6+
Install dependencies:
npm install
Run webpack dev server (for assets):
npm start
Visit http://localhost:3000/.
npm run start:prod
Visit http://localhost:3000/.
This will build the assets for you on the first run. For subsequent starts, you should run:
npm run build
To run tests, use:
npm test