Sajeetharan Sinnathurai
With over 13 years of experience in the IT industry, Sajeetharan is a Cloud Solution Architect, an enthusiast in Cloud and Opensource.He currently works at Microsoft as a Senior Program Manager in the CosmosDB team
In a nutshell
Communities
Social Developer
Recognitions
Cloud Solution Architect @Microsoft
GDE,MCT and former MVP from SL
Top stackoverflow contributor
@sajeetharan
@kokkisajee
@sajeetharan
@sajeetharan
"Frameworks may come and go , concepts remains the same - Sajee"
The following piece of talk has no basis more reliable than my own meandering experience and strictly not for Beginners
https://www.youtube.com/watch?v=CQ1IC3M-gFk
Then
Now
2-way databinding
2009
Component based view library
2013
Native Mobile Apps using React
2014
Progressive framework
2016
Future ready
$scope
ng-if
ng-app
ng-model
mobile
oriented
better
performance
x11
@kokkisajee
Angular 1.x vs Angular
Stable and performant
2017
2020
Language service && Tooling
Smaller, Faster and Easier to use
Smaller, faster, easier
Typescript 4.0,webpack 5
A framework for web front-end app
A platform for integrated development
An ecosystem for developers
Angular as a Framework
From Framework to platform
Angular As an Ecosystem
Go here - > madewithangular.com
600+ Google projects!
Microsfot uses Angular for Xbox sites
120+ GDES , 700+ Communities , 69k Contributors
Building Blocks of Angular
@kokkisajee
Angular App Structure
Our application is divided in two parts. -Application itself & Application bootstrap
Our modules, routes, components & services live here.
We bootstrap our app depending on what platform were developing for, and add any required polyfills & vendors.
Typescript config, npm packages, scripts, webpack config, express server, and so on...
@kokkisajee
@Module
import {BrowserModule} from '@angular/platform-browser';
import {NgModule} from '@angular/core';
import {FormsModule} from '@angular/forms';
import {HttpModule} from '@angular/http';
import {AppComponent} from './app.component';
import { HomeComponent } from './home/home.component';
import {AppRoutingModule} from "./app-routing.module";
@NgModule({
declarations: [
AppComponent,
HomeComponent
],
imports: [
BrowserModule,
FormsModule,
HttpModule,
AppRoutingModule
],
providers: [/**DataService, UserService**/],
bootstrap: [AppComponent]
})
export class AppModule {
}
Help organize an application into cohesive blocks of functionality.
This is Angular
The rest is a standard JS/Typescript class
@kokkisajee
@Component
import {Component, OnInit} from '@angular/core';
import {Router} from "@angular/router";
import {UserService} from "../shared/services/user.service";
@Component({
selector: 'app-login',
templateUrl: './login.component.html',
styleUrls: ['./login.component.scss']
})
export class LoginComponent implements OnInit {
constructor(private us:UserService, private route: Router) {
}
ngOnInit() {
}
login() {
this.us.login();
}
logout() {
this.us.logout();
}
}
Components are the most basic building block of an UI in an Angular application
Decorator
Annotate this is a Angular component
Angular Injects for us every dependency
@kokkisajee
@Directives
Components still have directives
<div [ngStyle]="setStyles()">
<p *ngFor="let player of players">...</p>
</div>
Attribute Directives : ngStyle, ngClass, …Structural Directives : ngIf, ngSwitch, ngFor, …
@kokkisajee
Pipes
Components can display formatted data
import { Pipe } from '@angular/core';
import { PipeTransform } from '@angular/core';
@Pipe({name: 'filterReviewByStatus'})
export class FilterReviewByStatusPipe implements PipeTransform {
}
DatePipe, UpperCasePipe, LowerCasePipe, CurrencyPipe, PercentPipe ...
<p>
The chained mario's birthday is
{{ birthday | date:'fullDate' | uppercase}}
</p>
Services
Service is a class that encapsulates some sort of functionality and provides it as a service for the rest of the application
export class UserService {
private users: User[] = [];
constructor(
private backend: BackendService,
private logger: Logger
) { ... }
getAllUSers() {
return this.users;
}
}
@kokkisajee
@Component({
template: "<h1>{{title}}</h1>"
})
class MyComponent {
title = "Hello!";
}
<h1>Hello!</h1>
Text
2010
2015
2019
2018
2020
Started with angularjs , first industry project
Started with angular, became the top angularjs answerer on SO
Became google dev expert, Top contributor angular on SO, 18 Sessions , 230 Repositories
Started NG-Srilanka, First Angular Team meet at San Francisco
Book on Angular Projects,Top 4 contributors on Angular, Aim to produce 2 more GDES from SL
Why I chose Angular
1. Why is this relevant to you?
2. Some context please!
3. When is Angular suitable?
4. Technical Examples!
5. When is Angular not ideal?
🍺🍺🍺
Why I chose Angular
1. Why is this relevant to you?
2. Some context please!
3. When is Angular suitable?
4. Technical Examples!
5. When is Angular not ideal?
🍺🍺🍺
Why I chose Angular
1. Why is this relevant to you?
2. Some context please!
3. When is Angular suitable?
4. Technical Examples!
5. When is Angular not ideal?
🍺🍺🍺
Why I chose Angular
1. Why is this relevant to you?
2. Some context please!
3. When is Angular suitable?
4. Technical Examples!
5. When is Angular not ideal?
🍺🍺🍺
Why I chose Angular
1. Why is this relevant to you?
2. Some context please!
3. When is Angular suitable?
4. Technical Examples!
5. When is Angular not ideal?
🍺🍺🍺
Why I chose Angular
1. Why is this relevant to you?
2. Some context please!
3. When is Angular suitable?
4. Technical Examples!
5. When is Angular not ideal?
🍺🍺🍺
Why I chose Angular
1. Why is this relevant to you?
2. Some context please!
3. When is Angular suitable?
4. Technical Examples!
5. When is Angular not ideal?
🍺🍺🍺
Why I chose Angular
1. Why is this relevant to you?
2. Some context please!
4. Technical Examples!
5. When is Angular not ideal?
🍺🍺🍺
👇🏻
3. When is Angular suitable?
Why I chose Angular
1. Why is this relevant to you?
2. Some context please!
4. Technical Examples!
5. When is Angular not ideal?
🍺🍺🍺
👇🏻
MICROSOFT
3. When is Angular suitable?
Why I chose Angular
1. Why is this relevant to you?
2. Some context please!
3. When is Angular suitable?
4. Technical Examples!
5. When is Angular not ideal?
🍺🍺🍺
“I don’t want to refactor this app again in 6 months”
Why I chose Angular
1. Why is this relevant to you?
2. Some context please!
3. When is Angular suitable?
4. Technical Examples!
5. When is Angular not ideal?
🍺🍺🍺
"The features of the web app and the mobile app are similar, do not write it twice"
Why I chose Angular
1. Why is this relevant to you?
2. Some context please!
3. When is Angular suitable?
4. Technical Examples!
5. When is Angular not ideal?
🍺🍺🍺
Why I chose Angular
1. Why is this relevant to you?
2. Some context please!
3. When is Angular suitable?
4. Technical Examples!
5. When is Angular not ideal?
🍺🍺🍺
Why I chose Angular
1. Why is this relevant to you?
2. Some context please!
3. When is Angular suitable?
4. Technical Examples!
5. When is Angular not ideal?
🍺🍺🍺
“I need to refactor +100 components, quickly”
Schematics
Why I chose Angular
1. Why is this relevant to you?
2. Some context please!
3. When is Angular suitable?
4. Technical Examples!
5. When is Angular not ideal?
🍺🍺🍺
Why I chose Angular
1. Why is this relevant to you?
2. Some context please!
3. When is Angular suitable?
4. Technical Examples!
5. When is Angular not ideal?
🍺🍺🍺
Why I chose Angular
1. Why is this relevant to you?
2. Some context please!
3. When is Angular suitable?
4. Technical Examples!
5. When is Angular not ideal?
🍺🍺🍺
Why I chose Angular
1. Why is this relevant to you?
2. Some context please!
3. When is Angular suitable?
4. Technical Examples!
5. When is Angular not ideal?
🍺🍺🍺
Why I chose Angular
1. Why is this relevant to you?
2. Some context please!
3. When is Angular suitable?
4. Technical Examples!
5. When is Angular not ideal?
🍺🍺🍺
Why I chose Angular
1. Why is this relevant to you?
2. Some context please!
3. When is Angular suitable?
4. Technical Examples!
5. When is Angular not ideal?
🍺🍺🍺
“Google has more than 600 apps written in Angular”
A googler
Why I chose Angular
1. Why is this relevant to you?
2. Some context please!
3. When is Angular suitable?
4. Technical Examples!
5. When is Angular not ideal?
🍺🍺🍺
Why I chose Angular
1. Why is this relevant to you?
2. Some context please!
3. When is Angular suitable?
4. Technical Examples!
5. When is Angular not ideal?
🍺🍺🍺
Demo Time : Voting App
Hope things go smoothly
Angular << Modern Web
"The Web has moved.
Frameworks must move"
Where to go from here?
By Sajeetharan Sinnathurai
A talk on Angular for beginners and tips!
With over 13 years of experience in the IT industry, Sajeetharan is a Cloud Solution Architect, an enthusiast in Cloud and Opensource.He currently works at Microsoft as a Senior Program Manager in the CosmosDB team