Skip to content

Latest commit

 

History

History
67 lines (42 loc) · 897 Bytes

README.md

File metadata and controls

67 lines (42 loc) · 897 Bytes

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