Skip to content

Files

Latest commit

7a0917b · May 24, 2016

History

History
48 lines (29 loc) · 750 Bytes

README.md

File metadata and controls

48 lines (29 loc) · 750 Bytes

This is an implementation of TodoMVC built using:

Getting Started

Requirement:

  • NodeJS 4+

Install dependencies:

npm install

Running production server

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).


Running development server

Run webpack dev server (for assets):

npm run start

Visit http://localhost:8000/.

Testing

To run tests, use:

npm test