/todomvc-redux-react-typescript

TodoMVC example using Redux, React, and Typescript

Primary LanguageTypeScript

This is an example 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 0.12+

Start application:

npm start

Visit http://localhost:8000/.

Install dependencies for development:

npm install

Running development server

Run webpack dev server (for assets):

npm run dev-server

Run server:

npm run start-dev

Running production server

Build assets:

npm run build

Run server:

npm start

Testing

To run tests, use:

npm test