An open API service indexing awesome lists of open source software.

https://github.com/christophercr/todos

Demo app for AngularJS training
https://github.com/christophercr/todos

Last synced: 3 months ago
JSON representation

Demo app for AngularJS training

Awesome Lists containing this project

README

          

# Todos App with AngularJS

## About
Demo app for Angular JS training using the following libraries:
* [AngularJS](https://github.com/angular/angular.js)
* of course ;)
* [FakeRest](https://github.com/marmelab/FakeRest/)
* fake rest API server
* [Karma](http://karma-runner.github.io/)
* unit test runner
* [Jasmine](http://jasmine.github.io/)
* bdd unit testing library

This project has been adapted from the AngularJS TodoMVC example for learning purposes: https://github.com/tastejs/todomvc/tree/master/examples/angularjs

## Installation
First of all, make sure that you have installed NodeJS & npm: https://nodejs.org/en

Then you can get this project in 2 ways:
* clone this repository: `git clone https://github.com/christophercr/todos.git`
* download a zip: https://github.com/christophercr/todos/archive/master.zip

Now you can download all the necessary dependencies using the setup script: `npm install`.

## Scripts
* `npm run test`: run unit tests with Karma
* `npm run server`: start the development server (ExpressJs server)
* `npm run server-stop`: stop the development server

## License
This project and all associated source code is licensed under the terms of the [MIT License](https://en.wikipedia.org/wiki/MIT_License).