SlideShare a Scribd company logo
Introduction to Angular
for .NET Developers!
Laurent Duveau
June 06th, 2017
@LaurentDuveau
MVP, RD
I live in Montreal
Founder of the Angular Academy
2-day Angular Classroom Training
64 classes in the last 18 months
Montreal, Boston, Quebec, Toronto,
Ottawa, Calgary, Vancouver,
London, Copenhagen, …
July 13-14!
TypeScript
Setup and Tooling
Angular
Introduction to Angular for .NET Developers
THIS TALK IS ABOUT…
.NET Developer
Introduction to Angular for .NET Developers
Introduction to Angular for .NET Developers
ANGULAR IS
BUILT USING
TYPESCRIPT
TypeScript is a typed superset of JavaScript
that compiles to plain JavaScript
You can combine Javascript with Typescript
Any browser. Any host. Any OS
It is a Microsoft Technology, Open Source
From the creator of C#
11
Wait…
TypeScript
file.ts
JavaScript
file.js
TypeScript Compiler
Output ES5/ES6/…
compliant code
“Transpiling”
I hate JavaScript…
TypeScript is here
to help!
.NET Dev Mom
let height:number = 6;
let isDone:boolean = true;
let name:string = "Angular Academy";
let list:number[] = [1, 2, 3];
15
class Person {
private name: string;
constructor(name:string) {
this.name = name;
}
getName(): string {
return this.name;
}
}
var p = new Person(‘Laurent’);
p.getName();
class Person {
constructor(private name:string) {
}
getName(): string {
return this.name;
}
}
var p = new Person(‘Laurent’);
p.getName();
Or shorter…
17
Enums
Generics
Interface
async/await
…
TypeScript: Angular’s Secret Weapon
Wednesday at 8:30 AM - Laurent Duveau
Introduction to Angular for .NET Developers
19
20
21
> npm install XYZ
22
Getting started faster!
23
> npm install -g @angular/cli
> ng new DemoAngular
> ng serve
cli.angular.io
THE ANGULAR CLI MAKES IT
EASY TO CREATE AN APP
THAT WORKS AND FOLLOWS
BEST PRACTICES, RIGHT OUT
OF THE BOX.
There’s a new kid in town!
VS Code… a code editor, not an IDE
Free, Open Source
Windows, Mac, Linux!
HTML5, CSS, LESS, JavaScript or C# with NodeJs or ASP.NET, …
Rich code editor from VS in a fast and lightweight tool
Debug, deploy
Git integration
Extensions
code.visualstudio.com
DEMONSTRATION
Introduction to Angular for .NET Developers
JavaScript Framework especially suitable for
single-page modern web applications (Single
Page Application, or SPA)
Compatible with Internet Explorer 9+ and others
modern browsers
Open Source, MIT license
www.angular.io
* based on v2 architecture released in September 14, 2016
Angular 4.1.3! *
30
JavaScript,
HTML,
CSS, …
Angular is here
REST API,
ASP.NET,
C#, …
Your DB is
there!
Where is
TypeScript ?
Components Modules
Dependency
Injection
Language
(TypeScript)
Services Data Binding Decorators Routing
Header Component
Menu
Component
Footer Component
List ComponentGrid Component
YOUR APP IS A TREE OF
COMPONENTS
Map Update
App
DetailsList
ProductsMenu Contact
Introduction to Angular for .NET Developers
A component is a reusable object
Made up of: HTML
Template
Code
(ts class)
DEMONSTRATION
Visual Studio 2015 QuickStart
http://tinyurl.com/jmhv9h8
Angular setup with VS 2015 and ASP.NET 4
http://tinyurl.com/h2n82v8
ASP.NET Core + Angular template for VS
http://tinyurl.com/jnoqwfs
Deploy an Angular/ASP.NET Core App to Azure
http://tinyurl.com/he4g8lb
38
Thank you!
Introduction to Angular for .NET Developers

More Related Content

PDF
Debugging an Angular App
PDF
TypeScript: Angular's Secret Weapon
PDF
Introduction to Angular for .NET Developers
PDF
Introduction to Angular for .NET Developers
PDF
TypeScript: Angular's Secret Weapon
PPTX
Introducing type script
PPTX
TypeScript Overview
PPT
TypeScript Presentation
Debugging an Angular App
TypeScript: Angular's Secret Weapon
Introduction to Angular for .NET Developers
Introduction to Angular for .NET Developers
TypeScript: Angular's Secret Weapon
Introducing type script
TypeScript Overview
TypeScript Presentation

What's hot (20)

PDF
TypeScript and Angular workshop
PDF
TypeScript 101 - Studio Session - Accenture Liquid Studio
PPTX
Typescript in 30mins
PPTX
Typescript ppt
PPTX
Getting started with typescript
PDF
Introduction to TypeScript by Winston Levi
PPTX
AngularConf2015
PDF
Typescript - MentorMate Academy
PPTX
TypeScript intro
PPTX
TypeScript . the JavaScript developer best friend!
PDF
Typescript for the programmers who like javascript
PDF
Using TypeScript with Angular
PPTX
Typescript overview
PDF
TypeScript for Java Developers
PDF
TypeScript: coding JavaScript without the pain
PDF
Building End-to-End Apps Using Typescript
PDF
Power Leveling your TypeScript
PDF
Getting Started with TypeScript
PPT
Learning typescript
PDF
TypeScript 2 in action
TypeScript and Angular workshop
TypeScript 101 - Studio Session - Accenture Liquid Studio
Typescript in 30mins
Typescript ppt
Getting started with typescript
Introduction to TypeScript by Winston Levi
AngularConf2015
Typescript - MentorMate Academy
TypeScript intro
TypeScript . the JavaScript developer best friend!
Typescript for the programmers who like javascript
Using TypeScript with Angular
Typescript overview
TypeScript for Java Developers
TypeScript: coding JavaScript without the pain
Building End-to-End Apps Using Typescript
Power Leveling your TypeScript
Getting Started with TypeScript
Learning typescript
TypeScript 2 in action
Ad

Similar to Introduction to Angular for .NET Developers (20)

PDF
Introduction to Angular for .NET Developers
PDF
Introduction to Angular with TypeScript for .NET Developers
PPTX
PDF
Introduction To Angular 4 - J2I
PPTX
Angular, ASP.NET Core, and Visual Studio Code - Oh My!
PPTX
4 Anguadasdfasdasdfasdfsdfasdfaslar (1).pptx
PPTX
Angular 2.0
PPTX
Foster - Getting started with Angular
PPTX
Angular IO
PPTX
Angular
PDF
Angular Meetup 1 - Angular Basics and Workshop
PDF
The Pros and Cons of Angular Development: All You Need to Know
PPTX
Angular kickstart slideshare
PPT
Angular.ppt
PPTX
Angular for rookies MS TechDays 2017
PPTX
Introduction to Angular 2
PDF
Start with Angular framework
PDF
Where and Why Use Angular for Web Development?
PDF
Angular, the New Angular JS
PPTX
Angular CLI : HelloWorld
Introduction to Angular for .NET Developers
Introduction to Angular with TypeScript for .NET Developers
Introduction To Angular 4 - J2I
Angular, ASP.NET Core, and Visual Studio Code - Oh My!
4 Anguadasdfasdasdfasdfsdfasdfaslar (1).pptx
Angular 2.0
Foster - Getting started with Angular
Angular IO
Angular
Angular Meetup 1 - Angular Basics and Workshop
The Pros and Cons of Angular Development: All You Need to Know
Angular kickstart slideshare
Angular.ppt
Angular for rookies MS TechDays 2017
Introduction to Angular 2
Start with Angular framework
Where and Why Use Angular for Web Development?
Angular, the New Angular JS
Angular CLI : HelloWorld
Ad

More from Laurent Duveau (20)

PDF
Shit happens… debugging an Angular app.
PDF
8 things you didn't know about the Angular Router, you won't believe #6!
PDF
De 0 à Angular en 1h30! (french)
PDF
Angular 6, CLI 6, Material 6 (french)
PDF
Angular Advanced Routing
PDF
Introduction à Angular 2
PDF
Angular 2... so can I use it now??
PPTX
ngconf 2016 (french)
PDF
Microsoft Edge pour les développeurs web
PDF
Microsoft Edge pour les développeurs web
PDF
Introduction to SPAs with AngularJS
PDF
Xamarin.Forms [french]
PDF
Back from Xamarin Evolve 2014
PDF
Windows App Studio
PDF
Windows 8: Live tiles, badges et notifications toasts [french]
PPTX
L'opportunité Windows 8 pour les développeurs
PPTX
Building apps for WP8 and Win8
PPTX
Windows Store apps development
PPTX
L'opportunité Windows 8: Introduction au Windows Store
PPTX
Introduction au Windows Store
Shit happens… debugging an Angular app.
8 things you didn't know about the Angular Router, you won't believe #6!
De 0 à Angular en 1h30! (french)
Angular 6, CLI 6, Material 6 (french)
Angular Advanced Routing
Introduction à Angular 2
Angular 2... so can I use it now??
ngconf 2016 (french)
Microsoft Edge pour les développeurs web
Microsoft Edge pour les développeurs web
Introduction to SPAs with AngularJS
Xamarin.Forms [french]
Back from Xamarin Evolve 2014
Windows App Studio
Windows 8: Live tiles, badges et notifications toasts [french]
L'opportunité Windows 8 pour les développeurs
Building apps for WP8 and Win8
Windows Store apps development
L'opportunité Windows 8: Introduction au Windows Store
Introduction au Windows Store

Recently uploaded (20)

PDF
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
PPTX
Cloud computing and distributed systems.
PDF
Sensors and Actuators in IoT Systems using pdf
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PDF
Electronic commerce courselecture one. Pdf
PDF
Modernizing your data center with Dell and AMD
PDF
Chapter 3 Spatial Domain Image Processing.pdf
PPTX
20250228 LYD VKU AI Blended-Learning.pptx
PPTX
PA Analog/Digital System: The Backbone of Modern Surveillance and Communication
PPTX
breach-and-attack-simulation-cybersecurity-india-chennai-defenderrabbit-2025....
PDF
Review of recent advances in non-invasive hemoglobin estimation
PDF
Advanced IT Governance
PPTX
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
PDF
NewMind AI Monthly Chronicles - July 2025
PPTX
MYSQL Presentation for SQL database connectivity
PDF
Transforming Manufacturing operations through Intelligent Integrations
PPT
Teaching material agriculture food technology
PDF
solutions_manual_-_materials___processing_in_manufacturing__demargo_.pdf
PDF
CIFDAQ's Market Wrap: Ethereum Leads, Bitcoin Lags, Institutions Shift
PDF
HCSP-Presales-Campus Network Planning and Design V1.0 Training Material-Witho...
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
Cloud computing and distributed systems.
Sensors and Actuators in IoT Systems using pdf
“AI and Expert System Decision Support & Business Intelligence Systems”
Electronic commerce courselecture one. Pdf
Modernizing your data center with Dell and AMD
Chapter 3 Spatial Domain Image Processing.pdf
20250228 LYD VKU AI Blended-Learning.pptx
PA Analog/Digital System: The Backbone of Modern Surveillance and Communication
breach-and-attack-simulation-cybersecurity-india-chennai-defenderrabbit-2025....
Review of recent advances in non-invasive hemoglobin estimation
Advanced IT Governance
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
NewMind AI Monthly Chronicles - July 2025
MYSQL Presentation for SQL database connectivity
Transforming Manufacturing operations through Intelligent Integrations
Teaching material agriculture food technology
solutions_manual_-_materials___processing_in_manufacturing__demargo_.pdf
CIFDAQ's Market Wrap: Ethereum Leads, Bitcoin Lags, Institutions Shift
HCSP-Presales-Campus Network Planning and Design V1.0 Training Material-Witho...

Introduction to Angular for .NET Developers