This is an implementation of TodoMVC built using:
- React & ReactDOM 0.14.7
- Redux 3.0.6
- TypeScript 1.8.9
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 4+
Install dependencies:
npm install
npm start
Visit http://localhost:8000/.
Note: This will run the pre-built JavaScript files, if you want to play around with the source you need to run the development server with webpack dev server (See below).
Run webpack dev server (for assets):
npm run start:dev
Visit http://localhost:8000/.
To run tests, use:
npm test