sangoon / devfest-2015-ng2-codelab

Angular 2 Codelab: Let's develop an Angular 2 application for The DevFest 2015 Conference.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Nantes Devfest 2015

Join the chat at https://gitter.im/manekinekko/devfest-2015-ng2-codelab Dependency Status devDependency Status npm version

Sauce Test Status

Angular 2 Codelab: Let's develop a simple Angular 2 application and get familiar with the new concepts.

  • Note: Angular 2.0 is not production ready yet!
  • Verison used in this app: ALPHA-45

Slides

https://slides.com/wassimchegham/getting-started-with-angular-2/

Your Feedback

Please take a minute and give us your feedback about Angular 2: http://bit.ly/devfest-2015-ng2-codelab

Documentation

Application tree components

Components tree

The app we are going to build

How to start

git clone https://github.com/manekinekko/devfest-2015-ng2-codelab
cd $_
npm install -g gulp bower tsd
npm install
bower install
gulp serve # run a local dev server

Directory Structure

.
├── LICENSE
├── README.md
├── __build__/
│   ├── app.js
│   ├── bootstrap.js
│   ├── components/
│   ├── data/
│   ├── fonts/
│   ├── images/
│   ├── index.html
│   ├── routes.config.js
│   ├── services/
│   ├── styles/
│   └── vendor/
├── bower.json
├── bower_components/
├── documentation/
├── fonts/
├── gulpfile.js
├── images/
├── karma.conf.js
├── package.json
├── src/
│   ├── app/
│   │   ├── app.ts
│   │   ├── bootstrap.ts
│   │   ├── components/
│   │   ├── data/
│   │   ├── index.html
│   │   ├── routes.config.ts
│   │   ├── services/
│   │   ├── styles/
│   │   ├── system.config.js
│   │   └── typings/
│   └── tsconfig.json
├── test/
├── tsd.json
├── tsd_typings/
└── typings/

About

Angular 2 Codelab: Let's develop an Angular 2 application for The DevFest 2015 Conference.

License:Apache License 2.0


Languages

Language:TypeScript 46.5%Language:JavaScript 40.8%Language:HTML 7.5%Language:CSS 5.3%