SlideShare a Scribd company logo
Angular 2
Better or worse?
Vladimir Georgiev
Technical Trainer &
Software Developer @ SoftUni
http://VGeorgiev.org/
@VGeorgiew
Table of Contents
1.Who am I?
2.Where Angular 1 is going?
 v1.3
 v1.4
 v1.5
3.Angular 2
4.Demo
2
3
 Vladimir Georgiev
 Software Engineer and Technical Trainer @
Software University
 Top performing graduate from the Telerik
Software Academy (2013)
 Student in Technical University
 Computer and Software Engineering
 Web site & blog: www.VGeorgiev.org
 Twitter: @VGeorgiew
Who am I?
Have you ever written Angular?
Let's start with Angular 1
Angular 1 is not dead!
Angular 1 vs Angular 2 sites
angularjs.org angular.io
Angular 1.3
Patch releases
Bug fixes
Small features
Angular 1.4
New Router
Internationalization
ng-animate, ng-messages, ng-cookies
…
 You need to require ngNewRouter module
New Router
Angular 1.4 – Performance boost
~30% faster digest times vs 1.3
11
Upgrade to 1.4 is very easy
It has very few breaking changes
(well document)
Work will start after 1.4 is out
Planning will happen in public
Community involvement is the key
 Comment / vote on issues you want to see fix
 Send pull requests
Angular 1.5
Angular Team is working on
new features for Angular 1
New Router
Internationalization
Material Design
Migration plan to Angular 2
Support
Angular 1 New Features
Use new router
Use ES6 modules
Use ES6 in general
This will make the migration easier
Release Angular 1 until you are using it
18
Performance
The Changing Web
Mobile
Ease of Use
Why Angular 2.0?
Simpler
Flexible
Productive developers
Fast
Consistent
Angular 2 Themes
20
 Angular 1
 Angular 2
 Why?
 Problems with src, disabled:
Angular 2 – Data Binding
<component title="{{expression}}">
<component [title]="expression">
<component disabled="{{exp}}">
<component ng-disabled="exp">
<component src="{{exp}}">
<component ng-src="{{exp}}">
21
 Expression
 Driven by change detection
 Statement
 Driven by event
Angular 2 – Event Binding
<component [prop]="user.name(current)">
<component (event)="user.name(current)">
22
Angular - Reference
<button (click)="input.focus()">
<input #input type="text" />
23
 Can you spot all the errors in here?
Angular 1 - Typos
<div tytle="{{usor.name}}">
<button ngClick="ctl.click()">
{{usor.name}}
</button>
</div>
24
Angular 1 - Typos
<div tytle="{{usor.name}}">
<button ngClick="ctl.click()">
{{usor.name}}
</button>
</div>
Angular 2 immediately Typo Errors
25
26
 Still in Angular 2
 Dependency injection
 Data binding
 Directives
 Router
 Filters
 Animation
 Accessibility
Angular 1 ?= Angular 2
 Still in Angular 2
 i18n
 Forms
 Expressions
 Material Design
 Protractor
 Karma
 Mocks
27
Web Components
New template syntax
New languages
Ultra-fast change detection
and more…
New in Angular 2
28
Angular 1
 Service
 Directive
 Controller
Angular 2
 Component
Differences between components
app.factory('SoftUniStore', function () { … });
app.directive('autocomplete', function () { … });
app.controller('softUniController', function () { … });
@Component({ selector: 'my-app' })
@Template({ url: 'templates/softuni' })
class SoftUniComponent { … }
29
Directives
<input name="title" autocomplete="movie-title">
module.directive('autocomplete', ["autocompleter", function(autocompleter) {
return {
restrict: 'A',
link: function (scope, element, attrs) {
}
}
}]);
@Decorator({ selector: '[autocomplete]' })
class Autocomplete {
constructor(autocompleter:Autocompleter, el:NgElement, attrs:NgAttributes){
}
}
Angular 1
Angular 2
30
Microsyntax Templates
<ul>
<li template="foreach #item in items">
{{item}}
</li>
</ul>
<ul>
<li *foreach="#item in items">
{{item}}
</li>
</ul>
31
 AtScript is a JavaScript base language extending TypeScript
 It states that plain JavaScript code is a valid AtScript code
 Builds on ECMAScript 6 with types
 Extends it by annotations and type introspection
 Superset of ES6
 Uses TypeScript Syntax
 Optional Runtime Type Verification
 Type and Metadata Annotations
AtScript
32
AtScript
AtScript is TypeScript
33
34
 Traceur is a transpiler (compiler) that takes features of future
standards
 Traceur transpiles them into today JavaScript
Traceur
Angular 2 Loves Standards
When Angular 2 ships?
First migration – May
Angular 2 – Far in the future
Open Source
with Community Involvement
38
 Add a feature
 Contact us
 Minimal set of changes per PR
 Unit tests
 Follow conventions
 Work on issues
 Write a Plunker or a failing test
 Broen at master?
 Help closing issues
How you can help
Resources - What We Need Additionally?
 ng-conf
 http://www.ng-conf.org/
 New Router Concepts
 https://www.youtube.com/watch?v=h1P_Vh4gSQY
 TODO App
 https://github.com/davideast/ng2do
 Victor Savkin Blog
 http://victorsavkin.com/
Angular 2
Live Demo
40
?
Angular 2

More Related Content

PDF
Angular 2: What's New?
PPTX
Angular1x and Angular 2 for Beginners
PDF
Introduction to angular 2
PDF
Introduction to Angular 2
PDF
Getting Started with Angular 2
PDF
Angular 2 : le réveil de la force
PDF
Angular 2 - An Introduction
PDF
Angular2 with type script
Angular 2: What's New?
Angular1x and Angular 2 for Beginners
Introduction to angular 2
Introduction to Angular 2
Getting Started with Angular 2
Angular 2 : le réveil de la force
Angular 2 - An Introduction
Angular2 with type script

What's hot (20)

ODP
Introduction to Angular 2
PPTX
Introduction to angular 2
PDF
The evolution of Angular 2 @ AngularJS Munich Meetup #5
PDF
JavaScript - The Universal Platform?
PDF
Angular 2 - The Next Framework
PDF
Building Universal Applications with Angular 2
PDF
Angular 2... so can I use it now??
PDF
Tech Webinar: Angular 2, Introduction to a new framework
PDF
Angular 2 overview
PPTX
Talk for DevFest 2021 - GDG Bénin
PPTX
PDF
Understanding Angular 2 - Shmuela Jacobs - Codemotion Milan 2016
PDF
Angular 2 Essential Training
ODP
Angular 6 - The Complete Guide
PDF
Developing a Demo Application with Angular 4 - J2I
PDF
The productive developer guide to Angular 2
PDF
Angular 2 Crash Course
PPTX
What’s new in angular 2
PDF
Angular2 intro
PPTX
Angular2 for Beginners
Introduction to Angular 2
Introduction to angular 2
The evolution of Angular 2 @ AngularJS Munich Meetup #5
JavaScript - The Universal Platform?
Angular 2 - The Next Framework
Building Universal Applications with Angular 2
Angular 2... so can I use it now??
Tech Webinar: Angular 2, Introduction to a new framework
Angular 2 overview
Talk for DevFest 2021 - GDG Bénin
Understanding Angular 2 - Shmuela Jacobs - Codemotion Milan 2016
Angular 2 Essential Training
Angular 6 - The Complete Guide
Developing a Demo Application with Angular 4 - J2I
The productive developer guide to Angular 2
Angular 2 Crash Course
What’s new in angular 2
Angular2 intro
Angular2 for Beginners
Ad

Similar to Angular 2 - Better or worse (20)

PDF
Angular 2 - How we got here?
PDF
5 Key Benefits of Migration
PPTX
Angular2v2
PDF
Ng-Conf 2015 Report : AngularJS 1 & 2
PDF
ngconf2015
ODP
Best episode ever: Angular 2 from the perspective of an Angular 1 developer
PPTX
Angular 2.0
PPTX
AngularConf2016 - A leap of faith !?
PDF
Angular2 tutorial
PDF
An Intro to Angular 2
PPTX
PPT on Angular 2 Development Tutorial
PPTX
Angular 2.0
PPTX
Angular 2 + TypeScript = true. Let's Play!
PDF
AngularJS 2.0 Jumpstart
PPTX
Angular2.0@Shanghai0319
PPTX
Angular%201%20to%20angular%202
PPTX
Angular 2 On Production (IT Talk in Dnipro)
PPTX
Angular 2
PPTX
Angular TS(typescript)
PPTX
What's new in Angular 2?
Angular 2 - How we got here?
5 Key Benefits of Migration
Angular2v2
Ng-Conf 2015 Report : AngularJS 1 & 2
ngconf2015
Best episode ever: Angular 2 from the perspective of an Angular 1 developer
Angular 2.0
AngularConf2016 - A leap of faith !?
Angular2 tutorial
An Intro to Angular 2
PPT on Angular 2 Development Tutorial
Angular 2.0
Angular 2 + TypeScript = true. Let's Play!
AngularJS 2.0 Jumpstart
Angular2.0@Shanghai0319
Angular%201%20to%20angular%202
Angular 2 On Production (IT Talk in Dnipro)
Angular 2
Angular TS(typescript)
What's new in Angular 2?
Ad

Recently uploaded (20)

PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PDF
CIFDAQ's Market Insight: SEC Turns Pro Crypto
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PPTX
Big Data Technologies - Introduction.pptx
PDF
NewMind AI Monthly Chronicles - July 2025
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PDF
Encapsulation_ Review paper, used for researhc scholars
PPTX
PA Analog/Digital System: The Backbone of Modern Surveillance and Communication
PDF
Encapsulation theory and applications.pdf
PDF
cuic standard and advanced reporting.pdf
PPTX
20250228 LYD VKU AI Blended-Learning.pptx
PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PDF
Empathic Computing: Creating Shared Understanding
PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
PDF
Review of recent advances in non-invasive hemoglobin estimation
PPT
Teaching material agriculture food technology
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PPTX
MYSQL Presentation for SQL database connectivity
PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PPTX
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
CIFDAQ's Market Insight: SEC Turns Pro Crypto
Reach Out and Touch Someone: Haptics and Empathic Computing
Big Data Technologies - Introduction.pptx
NewMind AI Monthly Chronicles - July 2025
Digital-Transformation-Roadmap-for-Companies.pptx
Encapsulation_ Review paper, used for researhc scholars
PA Analog/Digital System: The Backbone of Modern Surveillance and Communication
Encapsulation theory and applications.pdf
cuic standard and advanced reporting.pdf
20250228 LYD VKU AI Blended-Learning.pptx
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
Empathic Computing: Creating Shared Understanding
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
Review of recent advances in non-invasive hemoglobin estimation
Teaching material agriculture food technology
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
MYSQL Presentation for SQL database connectivity
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx

Angular 2 - Better or worse

Editor's Notes

  • #7: Понеже Angular team са пичове и освен, че искат да подобрят Angular, като го пренапишат, за тях е много важно мнението на хората и какво им харесва на тях. Също така на коя платформа разработват своите приложения.
  • #8: How we are going to split our development between Angular 1 and Angular 2 Based on where you are spending your time There're going to use the traffic between Angular 1 and Angular 2 sites to gauge interest in the community as to where you are spending your time
  • #10: ng-messages ng-cookies ability to set path and domain clean up cookie update process CommonJS – friendly builds injector – print caller name in "unknown provider" errors ng-jq – make it possible to force jqLite or a specific jQuery version ngOptions – add support for disabling an option limitTo – add a beginning index argument ngModel – add $setDirty method routeProvider – allow case-insensitive route matching several ngAria improvements several $http improvements
  • #16: 1. Router - Some of the big work we're doing feature-wise for Angular 1 is work that we're going to share with Angular 2, starting with the ROUTER We build this new router for Angular 2 and then back ported in to Angular 1. It focuses on mobile use cases and complex situations in big apps 2. Better i18n 3. Material Design - for Angular 1 then for Angular 2. Layout system based on flexbox 4. Migration plan - They are planning to provide migration guide. John Papa will help them
  • #18: Release Angular 1 until the vast majority of you might migrate to Angular 2
  • #19: When we looked at where we were and where you wanted us to be, we realized that we couldn't get there with the Angular 1 architecture at least not without making very painful breaking changes This is why we came up with Angular 2 Angular 2 is now in alpha You can go see its status on angular.io It is not ready for building production applications quite yet
  • #27: Are the features that I like in Angular 1 still there? Are the knowledge in Angular 1 maps to this new framework?
  • #38: The Angular team have chance to work, not only with people inside the team, but with many talented people outside the team. Ability to hire some really high quality people. Angular team know your abilities by your contributions Some of the people in Angular Team are hired from contributors.