Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sonicoder86/angular2-esnext-todomvc
Angular TodoMVC application in Javascript (ES6/ES7).
https://github.com/sonicoder86/angular2-esnext-todomvc
angular babel todomvc webpack
Last synced: about 2 months ago
JSON representation
Angular TodoMVC application in Javascript (ES6/ES7).
- Host: GitHub
- URL: https://github.com/sonicoder86/angular2-esnext-todomvc
- Owner: sonicoder86
- Created: 2015-12-29T22:24:11.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-05-13T20:00:15.000Z (over 7 years ago)
- Last Synced: 2024-05-19T03:22:21.489Z (7 months ago)
- Topics: angular, babel, todomvc, webpack
- Language: JavaScript
- Homepage: https://blacksonic.github.io/angular2-esnext-todomvc
- Size: 5.27 MB
- Stars: 129
- Watchers: 8
- Forks: 26
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Angular ESNext TodoMVC
[![Dependency Status](https://david-dm.org/blacksonic/angular2-esnext-todomvc.svg)](https://david-dm.org/blacksonic/angular2-esnext-todomvc)
[![devDependency Status](https://david-dm.org/blacksonic/angular2-esnext-todomvc/dev-status.svg)](https://david-dm.org/blacksonic/angular2-esnext-todomvc?type=dev)TodoMVC application built with Angular in Javascript (ES6/ES7).
Layout and namings based on the [official Angular style guide](https://angular.io/styleguide).
### Concepts it covers
- Creating @Component with directives (ngIf, ngFor)
- Creating child @Component and communicating with parent (@Input, @Output)
- Using Dependency Injection for service
- Use @Pipe inside @Component
- Routing### Quick Start
```bash
git clone https://github.com/blacksonic/angular2-esnext-todomvc.git
cd angular2-esnext-todomvcnpm install
npm start```
Open it in your browser [http://localhost:3000](http://localhost:3000).