Noflux TodoMVC Example Using TypeScript

This example is forked from https://github.com/jaysoo/todomvc-redux-react-typescript

This is an implementation of TodoMVC built using:

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/

Getting Started

Requirement:

  • NodeJS 6+

Install dependencies:

npm install

Running development server

Run webpack dev server (for assets):

npm start

Visit http://localhost:3000/.

Running production server

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

Testing

To run tests, use:

npm test

Last updated