This is an implementation of TodoMVC built using:
- React 0.14.6
- Redux 3.0.4
- TypeScript 1.7.5
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
Start application:
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 dev-server
Run server:
npm run start-dev
Build assets:
npm run build
Run server:
npm start
To run tests, use:
npm test