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
- Host: GitHub
- URL: https://github.com/christophercr/todos
- Owner: christophercr
- License: mit
- Created: 2016-10-24T22:00:56.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-10-24T22:29:28.000Z (over 9 years ago)
- Last Synced: 2024-11-08T12:50:03.088Z (over 1 year ago)
- Language: JavaScript
- Size: 14.6 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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).