Angular Crash Course

Stepan Suvorov

CTO @ Studytube

Requirements

  • node.js, npm
  • HTML/Javascriopt basics

@angular/cli

  • npm install -g @angular/cli
  • ng new myapp
  • ng serve

Project Structure

Main Heros

  • Components 80%
  • Directives 5%
  • Services 15%

Components

> ng generate component mycomponent
  • Controller
  • Template
  • Styles

Template Syntax

  • Interpolation - {{ x }}
  • Set element properties - [style.color]
  • Event handlers - (click)

Directives

  • *ngIf
  • *ngFor

*build-in ones

Services

  • providers: [MyService]

Thank you for your attention.

Questions?

Angular Crash Course

By Stepan Suvorov

Angular Crash Course

  • 973