https://github.com/christophercr/todos-ts-ng2
Demo app using Angular 2, Typescript and Webpack
https://github.com/christophercr/todos-ts-ng2
Last synced: 9 months ago
JSON representation
Demo app using Angular 2, Typescript and Webpack
- Host: GitHub
- URL: https://github.com/christophercr/todos-ts-ng2
- Owner: christophercr
- License: mit
- Created: 2016-11-25T15:46:48.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-11-27T18:24:06.000Z (over 9 years ago)
- Last Synced: 2025-08-22T06:53:19.245Z (10 months ago)
- Language: JavaScript
- Size: 227 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# todos-ts-ng2
## About
Demo app using Angular 2, Typescript and Webpack
* [Angular2](https://github.com/angular/angular)
* of course ;)
* [TypeScript](http://www.typescriptlang.org/)
* the future of JavaScript available now
* [TSLint](https://www.npmjs.com/package/tslint)
* linter for TypeScript (checks code quality/style)
* [Typings](https://github.com/typings/typings)
* manage TypeScript type definitions
* [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
* [Webpack](http://https://webpack.github.io//)
* module bundler & loader
This project has been adapted from the following projects for learning purposes:
* [TodoMVC AngularJS](https://github.com/tastejs/todomvc/tree/master/examples/angularjs)
* [Angular2 Webpack Starter](https://github.com/AngularClass/angular2-webpack-starter)
## 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-ts-ng2.git`
* download a zip: https://github.com/christophercr/todos-ts-ng2/archive/master.zip
Now you can download all the necessary dependencies using the setup script: `npm install`.
## Main Scripts
* `npm run test`: run unit tests with Karma
* `npm run server`: start the Webpack development server
* `npm run lint`: check typescript code quality/style
* `npm run tsc`: compile typescript files into javascript
* `npm run typings-install`: install typings defined in typings.json file
## License
This project and all associated source code is licensed under the terms of the [MIT License](https://en.wikipedia.org/wiki/MIT_License).
0
Looking