Master the essentials of Angular framework
Angular is a platform and framework for building single-page client applications using HTML and TypeScript. It implements core and optional functionality as a set of TypeScript libraries that you import into your applications.
The basic building blocks of Angular applications:
@Component({ selector: 'app-root', template: `{{title}}
` }) export class AppComponent { title = 'My App'; }
Reusable business logic and data sharing:
@Injectable({ providedIn: 'root' }) export class DataService { getData() { return ['item1', 'item2']; } }
Organizing code into cohesive blocks:
@NgModule({ declarations: [AppComponent], imports: [BrowserModule], bootstrap: [AppComponent] }) export class AppModule { }
{{'{{'}} value {{'}}'}}
[property]="value"
(event)="handler()"
[(ngModel)]="value"
constructor(private service: DataService) { // Service is automatically injected }
const routes: Routes = [ { path: 'home', component: HomeComponent }, { path: 'about', component: AboutComponent } ];