Todo app in plain JavaScript that demonstrates the concepts of model-view-controller architecture.
To get a local copy of the code, clone it using git:
git clone https://github.com/SafdarJamal/todo-app.git
cd todo-app
Finally, you need to start a local web server:
Download Web Server for Chrome
OR
Install http-server
globally:
npm install http-server -g
This will install http-server
globally so that it may be run from the command line.
http-server
OR
Use Python's SimpleHTTPServer
:
cd src
python -m SimpleHTTPServer
This project is licensed under the terms of the MIT license.