Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Angular Quick Start

Angular Quick Start

@ a local customer event in Winterthur

Angular ist das JavaScript Framework, von welchem heute alle sprechen und welches jeder Kunde einsetzen will. In dieser Session lernen Sie die Grundlagen der Web-Entwicklung mit Angular kennen und bekommen einen Überblick über den initialen Setup für den erfolgreichen Start. Nach einer Einführung in die Grundlagen zeigen wir Ihnen, wie sie mit Visual Studio Code und dem Angular Command Line Interface (Angular CLI) sofort loslegen können.

Thomas Gassmann

August 28, 2018
Tweet

More Decks by Thomas Gassmann

Other Decks in Technology

Transcript

  1. Plattform 28.08.2018 Angular Developer Quick Start 6 Dependency Injection Decorators

    Zones Compile Binding Render Material Mobile Universal CLI Language Service Augury ngUpdate Router Animation i18n
  2. Component 28.08.2018 Angular Developer Quick Start 8 import { Component

    } from '@angular/core'; @Component({ selector: 'app-product-list’, template: `<div> <h1>{{ pageTitle }}</h1> </div>` }) export class ProductListComponent { pageTitle: string = 'About'; } <app-product-list></app-product-list>
  3. Component and DataBinding 28.08.2018 Angular Developer Quick Start 9 ▪

    {{}} : Display the value in the UI ▪ [] : Bind an element-property to a property of your class ▪ () : Bind an element-event to a method of your class ▪ [()] : Bind a property two-way that you don’t have to think whether it’s ([]) or [()], just use the “banana in a box”-mnemonic to get the syntax right
  4. Interpolation ( {{...}} ) 28.08.2018 Angular Developer Quick Start 10

    @Component({ selector: 'my-app', template: `<h1>Details of {{fullname}}</h1>` }) export class AppComponent { fullname: string = "Lara Croft"; }
  5. Property Binding ( [...] ) 28.08.2018 Angular Developer Quick Start

    11 @Component({ template: `… <span [hidden]="isUnchanged">changed</span>` }) export class AppComponent { isUnchanged: boolean = true; }
  6. Event Binding ( (...) ) 28.08.2018 Angular Developer Quick Start

    12 @Component({ template: `… <button (click)="onSave()">Save</button>` }) export class AppComponent { onSave() { // do something } }
  7. Two-Way Data Binding ( [(...)] ) 28.08.2018 Angular Developer Quick

    Start 13 @Component({ selector: 'my-app’, template: `<h1>Details of {{person.fullname}}</h1> <input type="text" [(ngModel)]="person.fullname">` }) export class AppComponent { person: Person = { fullname: 'Lara Croft' }; } interface Person { fullname: string }
  8. Service 28.08.2018 Angular Developer Quick Start 14 ▪ A service

    is a class that gets injected into components ▪ for example a class that encapsulates access to a REST- Api ▪ or to allow a communication between components Component Component Component Service
  9. Service 28.08.2018 Angular Developer Quick Start 15 @Injectable() export class

    ProductService { constructor(private http: HttpClient) { } getProducts(): Observable<Product[]> { ... } }
  10. Using a service 28.08.2018 Angular Developer Quick Start 16 import

    { ProductService } from './product.service'; @Component({ … }) export class ProductListComponent { private service: ProductService; constructor(service: ProductService) { this.service = service; } }
  11. Using a service 28.08.2018 Angular Developer Quick Start 17 import

    { ProductService } from './product.service'; @Component({ … }) export class ProductListComponent { constructor(private service: ProductService) { } }
  12. Module 28.08.2018 Angular Developer Quick Start 18 ▪ Every App

    has at least one module, the Root Module ▪ The module can bundle multiple components ▪ One Component must be bootstrapped for startup Component Component Component Root Module bootstrap
  13. Module 28.08.2018 Angular Developer Quick Start 19 @NgModule({ imports: [

    BrowserModule, HttpClientModule, FormsModule, AppRoutingModule, ], declarations: [AppComponent], providers: [ProductService], bootstrap: [AppComponent] }) export class AppModule {}
  14. Angular CLI 28.08.2018 Angular Developer Quick Start 26 ▪ Command

    line interface for Angular ▪ Build an Angular application ▪ Generate files (Scaffolding) ▪ Execute / run the application ▪ Run unit and e2e tests ▪ Prepare and «optimize» the application for deployment
  15. CLI: Generate new app 28.08.2018 Angular Developer Quick Start 27

    ng new my-app Generate a new app in /my-app ng new my-app --dry-run Report without writing files ng new my-app --skip-install Generate without npm install ng new --style scss Use SCSS instead of CSS ng new my-app --routing Generate app with routing
  16. CLI: Generate 28.08.2018 Angular Developer Quick Start 29 ng generate

    <blueprint> Generate by schematics ng g c product-list Generate a component ng g c <name> --inline-template Template in ts file? ng g c <name> --spec=false Without unit tests ng g c <name> --flat Should a folder be created
  17. CLI: Serve and build 28.08.2018 Angular Developer Quick Start 30

    ng serve Serve the app ng s -o Serve the app and open ng build Build in dev mode ng build --prod Build in prod mode
  18. CLI: Other commands 28.08.2018 Angular Developer Quick Start 31 ng

    test Run unit tests ng test --code-coverage Create code coverage doc ng e2e Run end-to-end test ng doc <filter> Open angular.io API reference
  19. CLI: Other commands (since Angular CLI 6) 28.08.2018 Angular Developer

    Quick Start 32 ng g application <name> Create a project in same ws ng g library Create a library ng add <package> Add package based on schematics ng update Update packages Or create own schematics
  20. Ressources 28.08.2018 Angular Developer Quick Start 36 ▪ angular.io/docs ▪

    github.com/gassmannT ▪ swissangular.com ▪ m.trivadis.com/angular ▪ angular-academy.ch