SlideShare a Scribd company logo
www.edureka.co/angular-jsEDUREKA ANGULAR 2 CERTIFICATION TRAINING
www.edureka.co/angular-jsEDUREKA ANGULAR 2 CERTIFICATION TRAINING
Agenda
❖ Companies Using Angular
❖ Angular 2 Job Trends
❖ A Demo Web Application
❖ Building Blocks of Angular App
❖ Components
❖ Directives
❖ Services
❖ Router
www.edureka.co/angular-jsEDUREKA ANGULAR 2 CERTIFICATION TRAINING
Big Companies Using Angular JS
www.edureka.co/angular-jsEDUREKA ANGULAR 2 CERTIFICATION TRAINING
Companies Using Angular JS
Netflix decided to use Angular in
its tool for analyzing and
monitoring security of Amazon
Web Services.
www.edureka.co/angular-jsEDUREKA ANGULAR 2 CERTIFICATION TRAINING
Companies Using Angular JS
As of Sept’ 15, the website holds
the third place by number of
visitors among all online
newspapers and magazines
available online in UK
User interface of website is made
as an AngularJS app written
according to ES 2015.
www.edureka.co/angular-jsEDUREKA ANGULAR 2 CERTIFICATION TRAINING
Companies Using Angular JS
YouTube is available consoles
produced by Sony and PS3
app was written using
Angular JS framework
Youtube’s estimated worth is $70
billion. Service has one
billion users i.e. one third of
people using Internet worldwide.
www.edureka.co/angular-jsEDUREKA ANGULAR 2 CERTIFICATION TRAINING
Companies Using Angular JS
Weather.com gives you one of
the most precise weather
forecasting reports and is uses
Angular JS
www.edureka.co/angular-jsEDUREKA ANGULAR 2 CERTIFICATION TRAINING
Companies Using Angular JS
PayPal company owns online
payments system available in 203
countries
PayPal is another example of large
websites using AngularJS.
www.edureka.co/angular-jsEDUREKA ANGULAR 2 CERTIFICATION TRAINING
Companies Using Angular JS
Freelancer is one other example
of large websites that uses
AngularJS.
Freelancer is world famous
marketplace for outsourcing with
around 15.7 million registered
freelancers
www.edureka.co/angular-jsEDUREKA ANGULAR 2 CERTIFICATION TRAINING
Angular 2 Job Trends
www.edureka.co/angular-jsEDUREKA ANGULAR 2 CERTIFICATION TRAINING
Angular 2 Job Trend
www.edureka.co/angular-jsEDUREKA ANGULAR 2 CERTIFICATION TRAINING
Sample Web Application
www.edureka.co/angular-jsEDUREKA ANGULAR 2 CERTIFICATION TRAINING
Top 250 Movies To Watch
www.edureka.co/angular-jsEDUREKA ANGULAR 2 CERTIFICATION TRAINING
Building Blocks of Angular 2
www.edureka.co/angular-jsEDUREKA ANGULAR 2 CERTIFICATION TRAINING
Building Blocks
Components ServicesDirectives Router
A component
controls a patch of
screen called a view.
Service encompasses any value,
function, or feature required
(not related to view)
DOM gets manipulated as
per the instructions given
by directives.
Routers is for navigating
among different
components
www.edureka.co/angular-jsEDUREKA ANGULAR 2 CERTIFICATION TRAINING
Components
www.edureka.co/angular-jsEDUREKA ANGULARJS CERTIFICATION TRAINING
Components
In Angular Web Apps, all the view
functionalities are implemented as separate
components
www.edureka.co/angular-jsEDUREKA ANGULAR 2 CERTIFICATION TRAINING
Building Blocks
Navbar Component
About Component
Movies Component
Home Component
Home Page View of
the App
It contains the About
section
It shows the list of top 250
movies
Responsible for
navigation among
components
www.edureka.co/angular-jsEDUREKA ANGULAR 2 CERTIFICATION TRAINING
Component
Movie Details Component
Displays details of
the selected movie
Movies Component
(List of Movies)
www.edureka.co/angular-jsEDUREKA ANGULAR 2 CERTIFICATION TRAINING
A Closer Look at Component
www.edureka.co/angular-jsEDUREKA ANGULAR 2 CERTIFICATION TRAINING
Movies Component
Generates component tag, used for
loading component across other
components
Component Class
Decorator: Specifies
component meta data
Paths to HTML and CSS
Style Doc
www.edureka.co/angular-jsEDUREKA ANGULAR 2 CERTIFICATION TRAINING
Directives
www.edureka.co/angular-jsEDUREKA ANGULAR 2 CERTIFICATION TRAINING
Directives
Changes the appearance or behavior of a DOM element
Adds & removes DOM elements to
change DOM layout
Changes the appearance or behavior of an
element
Directives with a templateComponents
Structural Directives
Attributes Directive
1
2
3
www.edureka.co/angular-jsEDUREKA ANGULAR 2 CERTIFICATION TRAINING
A Closer Look at Structural Directives
www.edureka.co/angular-jsEDUREKA ANGULAR 2 CERTIFICATION TRAINING
Directive
*ngFor: Structural Directive
Iterates over elements of a movies list
which is then displayed
www.edureka.co/angular-jsEDUREKA ANGULAR 2 CERTIFICATION TRAINING
A Closer Look at Attributes Directives
www.edureka.co/angular-jsEDUREKA ANGULAR 2 CERTIFICATION TRAINING
Directive
*appBoldText: Attributes Directive
Makes the text to be bold if user points a
movie in the list
www.edureka.co/angular-jsEDUREKA ANGULAR 2 CERTIFICATION TRAINING
Services
www.edureka.co/angular-jsEDUREKA ANGULARJS CERTIFICATION TRAINING
Services
{ }
Data Access
Logging
Business Logic
Configuration
Components
SERVICES
Service is a broad category encompassing any value, function, or feature that your
application needs.
logging service data service message bus tax calculator
Example:
{ }Directives
Services
www.edureka.co/angular-jsEDUREKA ANGULAR 2 CERTIFICATION TRAINING
Closer Look at Services
www.edureka.co/angular-jsEDUREKA ANGULARJS CERTIFICATION TRAINING
Services
Service to fetch list of
movies from database
Service to fetch details of
a selected movie from
database
Decorator
www.edureka.co/angular-jsEDUREKA ANGULAR 2 CERTIFICATION TRAINING
Dependency Injection
www.edureka.co/angular-jsEDUREKA ANGULARJS CERTIFICATION TRAINING
Dependency Injection
Creates a new instance of class
along with its required
dependencies
Used to provide services to a
components as per their needs
Service 2
{ }
Service 2
{ }
Component
Service 1
{ }
Service 3
{ }
The process of providing a
service to component is called
Dependency Injection
Dependency Injection
www.edureka.co/angular-jsEDUREKA ANGULAR 2 CERTIFICATION TRAINING
Dependency Injection Example
www.edureka.co/angular-jsEDUREKA ANGULARJS CERTIFICATION TRAINING
Injecting Services
Dependency Injection:
Injecting Service into components
www.edureka.co/angular-jsEDUREKA ANGULAR 2 CERTIFICATION TRAINING
Router
www.edureka.co/angular-jsEDUREKA ANGULAR 2 CERTIFICATION TRAINING
Router
A router allows us to navigate across components in a Web App
Navbar Component
About Component
Movies Component
Home Component
Home Page View of
the App
It contains the About
section
It shows the list of top 250
movies
Responsible for
navigation among
components
www.edureka.co/angular-jsEDUREKA ANGULAR 2 CERTIFICATION TRAINING
A Closer Look at Router
www.edureka.co/angular-jsEDUREKA ANGULAR 2 CERTIFICATION TRAINING
Router
Path Declaration for different
components
Passing Declared Paths Array to
RouterModule
www.edureka.co/angular-jsEDUREKA ANGULAR 2 CERTIFICATION TRAINING
routerLink
Navigation from Movies List Component to Move
Details Component
MoviesComponent MoviesDetailsComponent
[ routerLink ] = “ [ ‘ < path >’ ] ”
www.edureka.co/angular-jsEDUREKA ANGULAR 2 CERTIFICATION TRAINING
<router-outlet>
Allows to navigate to a Component
by pasting its path in Browser Address Bar
www.edureka.co/angular-jsEDUREKA ANGULAR 2 CERTIFICATION TRAINING
<router-outlet>
Home Page Movies List
Add ‘/movies’ to Browser Address Bar
www.edureka.co/angular-jsEDUREKA ANGULAR 2 CERTIFICATION TRAINING
Final Demo
www.edureka.co/angular-jsEDUREKA ANGULAR 2 CERTIFICATION TRAINING
Thank You …
Questions/Queries/Feedback

More Related Content

What's hot (20)

PDF
Angular Directives | Angular 2 Custom Directives | Angular Tutorial | Angular...
Edureka!
 
ODP
Angular 6 - The Complete Guide
Sam Dias
 
PPSX
Angular 4 fronts
badal dubla
 
PPTX
Talk for DevFest 2021 - GDG Bénin
Ezéchiel Amen AGBLA
 
PDF
Developing a Demo Application with Angular 4 - J2I
Nader Debbabi
 
PPTX
Angular 4 Introduction Tutorial
Scott Lee
 
PDF
Meetup SkillValue - Angular 6 : Bien démarrer son application
Thibault Even
 
PDF
What angular 13 will bring to the table
Moon Technolabs Pvt. Ltd.
 
PPTX
An Overview of Angular 4
Cynoteck Technology Solutions Private Limited
 
PPTX
Angular 2
Nigam Goyal
 
PDF
Mastering angular - Dot Net Tricks
Gaurav Singh
 
ODP
A Glimpse on Angular 4
Sam Dias
 
PDF
Angular 2 - Core Concepts
Fabio Biondi
 
PDF
Angular meetup 2 2019-08-29
Nitin Bhojwani
 
PPTX
What’s new in angular 2
Ran Wahle
 
PDF
Introduction to angular 4
Marwane El Azami
 
PPTX
OCTO BOF - How to build Netvibes with AngularJS
Jonathan Meiss
 
PDF
Angular2 intro
Shawn McKay
 
PPTX
Angular 2 - Better or worse
Vladimir Georgiev
 
PDF
Introduction to angular 2
Dhyego Fernando
 
Angular Directives | Angular 2 Custom Directives | Angular Tutorial | Angular...
Edureka!
 
Angular 6 - The Complete Guide
Sam Dias
 
Angular 4 fronts
badal dubla
 
Talk for DevFest 2021 - GDG Bénin
Ezéchiel Amen AGBLA
 
Developing a Demo Application with Angular 4 - J2I
Nader Debbabi
 
Angular 4 Introduction Tutorial
Scott Lee
 
Meetup SkillValue - Angular 6 : Bien démarrer son application
Thibault Even
 
What angular 13 will bring to the table
Moon Technolabs Pvt. Ltd.
 
Angular 2
Nigam Goyal
 
Mastering angular - Dot Net Tricks
Gaurav Singh
 
A Glimpse on Angular 4
Sam Dias
 
Angular 2 - Core Concepts
Fabio Biondi
 
Angular meetup 2 2019-08-29
Nitin Bhojwani
 
What’s new in angular 2
Ran Wahle
 
Introduction to angular 4
Marwane El Azami
 
OCTO BOF - How to build Netvibes with AngularJS
Jonathan Meiss
 
Angular2 intro
Shawn McKay
 
Angular 2 - Better or worse
Vladimir Georgiev
 
Introduction to angular 2
Dhyego Fernando
 

Similar to Angular 2 Training | Angular 2 Tutorial For Beginners | Angular Certification | Edureka (20)

PDF
Deep Dive into AngularJS Javascript Framework
Edureka!
 
PDF
AngularJS for Beginners
Edureka!
 
PDF
Getting Started With AngularJS
Edureka!
 
PDF
Getting Started with AngularJS
Edureka!
 
PDF
Leveling up with AngularJS
Austin Condiff
 
PPTX
Live Demo : Trending Angular JS Featues
Edureka!
 
PDF
AngularJS : Superheroic JavaScript MVW Framework
Edureka!
 
PDF
Angular js
Felixits
 
PDF
Angular js
Felixits
 
PPTX
Angular patterns
Premkumar M
 
PPTX
Angular js for Beginnners
Santosh Kumar Kar
 
PDF
Beyond AngularJS: Best practices and more
Ari Lerner
 
PDF
Angular JS - Develop Responsive Single Page Application
Edureka!
 
PDF
Webinar on Angular JS titled 'Develop Responsive Single Page Application'
Edureka!
 
DOCX
angular
MUDDUKRISHNA14
 
DOCX
angular
MUDDUKRISHNA14
 
DOCX
angular
MUDDUKRISHNA14
 
DOCX
Angular
MUDDUKRISHNA14
 
DOCX
angular content
MUDDUKRISHNA14
 
PDF
AngularJS : Superheroic Javascript MVW Framework
Edureka!
 
Deep Dive into AngularJS Javascript Framework
Edureka!
 
AngularJS for Beginners
Edureka!
 
Getting Started With AngularJS
Edureka!
 
Getting Started with AngularJS
Edureka!
 
Leveling up with AngularJS
Austin Condiff
 
Live Demo : Trending Angular JS Featues
Edureka!
 
AngularJS : Superheroic JavaScript MVW Framework
Edureka!
 
Angular js
Felixits
 
Angular js
Felixits
 
Angular patterns
Premkumar M
 
Angular js for Beginnners
Santosh Kumar Kar
 
Beyond AngularJS: Best practices and more
Ari Lerner
 
Angular JS - Develop Responsive Single Page Application
Edureka!
 
Webinar on Angular JS titled 'Develop Responsive Single Page Application'
Edureka!
 
angular content
MUDDUKRISHNA14
 
AngularJS : Superheroic Javascript MVW Framework
Edureka!
 
Ad

More from Edureka! (20)

PDF
What to learn during the 21 days Lockdown | Edureka
Edureka!
 
PDF
Top 10 Dying Programming Languages in 2020 | Edureka
Edureka!
 
PDF
Top 5 Trending Business Intelligence Tools | Edureka
Edureka!
 
PDF
Tableau Tutorial for Data Science | Edureka
Edureka!
 
PDF
Python Programming Tutorial | Edureka
Edureka!
 
PDF
Top 5 PMP Certifications | Edureka
Edureka!
 
PDF
Top Maven Interview Questions in 2020 | Edureka
Edureka!
 
PDF
Linux Mint Tutorial | Edureka
Edureka!
 
PDF
How to Deploy Java Web App in AWS| Edureka
Edureka!
 
PDF
Importance of Digital Marketing | Edureka
Edureka!
 
PDF
RPA in 2020 | Edureka
Edureka!
 
PDF
Email Notifications in Jenkins | Edureka
Edureka!
 
PDF
EA Algorithm in Machine Learning | Edureka
Edureka!
 
PDF
Cognitive AI Tutorial | Edureka
Edureka!
 
PDF
AWS Cloud Practitioner Tutorial | Edureka
Edureka!
 
PDF
Blue Prism Top Interview Questions | Edureka
Edureka!
 
PDF
Big Data on AWS Tutorial | Edureka
Edureka!
 
PDF
A star algorithm | A* Algorithm in Artificial Intelligence | Edureka
Edureka!
 
PDF
Kubernetes Installation on Ubuntu | Edureka
Edureka!
 
PDF
Introduction to DevOps | Edureka
Edureka!
 
What to learn during the 21 days Lockdown | Edureka
Edureka!
 
Top 10 Dying Programming Languages in 2020 | Edureka
Edureka!
 
Top 5 Trending Business Intelligence Tools | Edureka
Edureka!
 
Tableau Tutorial for Data Science | Edureka
Edureka!
 
Python Programming Tutorial | Edureka
Edureka!
 
Top 5 PMP Certifications | Edureka
Edureka!
 
Top Maven Interview Questions in 2020 | Edureka
Edureka!
 
Linux Mint Tutorial | Edureka
Edureka!
 
How to Deploy Java Web App in AWS| Edureka
Edureka!
 
Importance of Digital Marketing | Edureka
Edureka!
 
RPA in 2020 | Edureka
Edureka!
 
Email Notifications in Jenkins | Edureka
Edureka!
 
EA Algorithm in Machine Learning | Edureka
Edureka!
 
Cognitive AI Tutorial | Edureka
Edureka!
 
AWS Cloud Practitioner Tutorial | Edureka
Edureka!
 
Blue Prism Top Interview Questions | Edureka
Edureka!
 
Big Data on AWS Tutorial | Edureka
Edureka!
 
A star algorithm | A* Algorithm in Artificial Intelligence | Edureka
Edureka!
 
Kubernetes Installation on Ubuntu | Edureka
Edureka!
 
Introduction to DevOps | Edureka
Edureka!
 
Ad

Recently uploaded (20)

PDF
Using FME to Develop Self-Service CAD Applications for a Major UK Police Force
Safe Software
 
PDF
Complete JavaScript Notes: From Basics to Advanced Concepts.pdf
haydendavispro
 
PDF
Transcript: New from BookNet Canada for 2025: BNC BiblioShare - Tech Forum 2025
BookNet Canada
 
PDF
Bitcoin for Millennials podcast with Bram, Power Laws of Bitcoin
Stephen Perrenod
 
PDF
How Startups Are Growing Faster with App Developers in Australia.pdf
India App Developer
 
PDF
Jak MŚP w Europie Środkowo-Wschodniej odnajdują się w świecie AI
dominikamizerska1
 
PDF
Empower Inclusion Through Accessible Java Applications
Ana-Maria Mihalceanu
 
PDF
"AI Transformation: Directions and Challenges", Pavlo Shaternik
Fwdays
 
PDF
The Builder’s Playbook - 2025 State of AI Report.pdf
jeroen339954
 
PDF
SWEBOK Guide and Software Services Engineering Education
Hironori Washizaki
 
PDF
Chris Elwell Woburn, MA - Passionate About IT Innovation
Chris Elwell Woburn, MA
 
PPTX
From Sci-Fi to Reality: Exploring AI Evolution
Svetlana Meissner
 
PDF
Agentic AI lifecycle for Enterprise Hyper-Automation
Debmalya Biswas
 
PDF
Newgen 2022-Forrester Newgen TEI_13 05 2022-The-Total-Economic-Impact-Newgen-...
darshakparmar
 
PDF
Smart Trailers 2025 Update with History and Overview
Paul Menig
 
PDF
HCIP-Data Center Facility Deployment V2.0 Training Material (Without Remarks ...
mcastillo49
 
PDF
Reverse Engineering of Security Products: Developing an Advanced Microsoft De...
nwbxhhcyjv
 
PDF
New from BookNet Canada for 2025: BNC BiblioShare - Tech Forum 2025
BookNet Canada
 
PDF
Blockchain Transactions Explained For Everyone
CIFDAQ
 
PDF
Timothy Rottach - Ramp up on AI Use Cases, from Vector Search to AI Agents wi...
AWS Chicago
 
Using FME to Develop Self-Service CAD Applications for a Major UK Police Force
Safe Software
 
Complete JavaScript Notes: From Basics to Advanced Concepts.pdf
haydendavispro
 
Transcript: New from BookNet Canada for 2025: BNC BiblioShare - Tech Forum 2025
BookNet Canada
 
Bitcoin for Millennials podcast with Bram, Power Laws of Bitcoin
Stephen Perrenod
 
How Startups Are Growing Faster with App Developers in Australia.pdf
India App Developer
 
Jak MŚP w Europie Środkowo-Wschodniej odnajdują się w świecie AI
dominikamizerska1
 
Empower Inclusion Through Accessible Java Applications
Ana-Maria Mihalceanu
 
"AI Transformation: Directions and Challenges", Pavlo Shaternik
Fwdays
 
The Builder’s Playbook - 2025 State of AI Report.pdf
jeroen339954
 
SWEBOK Guide and Software Services Engineering Education
Hironori Washizaki
 
Chris Elwell Woburn, MA - Passionate About IT Innovation
Chris Elwell Woburn, MA
 
From Sci-Fi to Reality: Exploring AI Evolution
Svetlana Meissner
 
Agentic AI lifecycle for Enterprise Hyper-Automation
Debmalya Biswas
 
Newgen 2022-Forrester Newgen TEI_13 05 2022-The-Total-Economic-Impact-Newgen-...
darshakparmar
 
Smart Trailers 2025 Update with History and Overview
Paul Menig
 
HCIP-Data Center Facility Deployment V2.0 Training Material (Without Remarks ...
mcastillo49
 
Reverse Engineering of Security Products: Developing an Advanced Microsoft De...
nwbxhhcyjv
 
New from BookNet Canada for 2025: BNC BiblioShare - Tech Forum 2025
BookNet Canada
 
Blockchain Transactions Explained For Everyone
CIFDAQ
 
Timothy Rottach - Ramp up on AI Use Cases, from Vector Search to AI Agents wi...
AWS Chicago
 

Angular 2 Training | Angular 2 Tutorial For Beginners | Angular Certification | Edureka