SlideShare a Scribd company logo
Angular JS
Angular architecture
● Angular component and Use case of it
● Some hands on
● Best practises
● FOCU
What is Angular JS?
MVC
Angular component
Controller
Service
Factory
Directives
Filter
View
Controller
● Setup the scope
● View Interaction
● Coordinate View and Model
● No DOM manipulationangular.module('myApp')
.controller('AddCarCtrl', ['$scope', function($scope) {
//do some stuff
}]);
Controller best practice
Less controller code
No application logic
No DOM manipulation
Service
Handle non-view logic
Communicate with server
Hold data & status
View
Display the Application
Declare Binding & Detectives
Create a Service
1. Value
2. Constant
3. Factory
4. Service
5. Providerangular.module('myApp').service('AddCarSvc',function($http,carList) {
//do some stuff
});
Directives
DOM manipulation
DOM events
Functionality( ng-show, ng-hide)
Widgets
Directives
Link
Controller
Scope
Project work though and hand on
https://github.com/dinushadev/angular-training.git
Set up dev environment with browser-sync
FOUC
Flash of unstyled Content
1. ng-cloak
[ng:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak {
display: none !important;
}
1. ng-bind
Use ng-bind instead of {{ }}
1. Add spinner
UI-Router
File Structure
Pros
● Two way binding
● Component oriented architecture with drectiview
● Rapid development
Cons
● Two way binding - formance issue.
● Rerendering
● With deep object graphs can cause slow app
Q

More Related Content

What's hot (20)

PPTX
Angular js for beginners
Munir Hoque
 
PPTX
Introduction to Angularjs
Manish Shekhawat
 
PDF
Advanced Tips & Tricks for using Angular JS
Simon Guest
 
PPTX
Angular js
ParmarAnisha
 
PDF
AngularJS - What is it & Why is it awesome ? (with demos)
Gary Arora
 
PPTX
AngularJS Best Practices
Narek Mamikonyan
 
PPTX
Introduction to Angular js 2.0
Nagaraju Sangam
 
PPTX
Step by Step - AngularJS
Infragistics
 
PPTX
AngularJS intro
dizabl
 
PPTX
Angular JS - Introduction
Sagar Acharya
 
PPTX
Angular js
Manav Prasad
 
PPTX
Getting Started with Angular JS
Akshay Mathur
 
PDF
AngularJS 101 - Everything you need to know to get started
Stéphane Bégaudeau
 
PDF
AngularJS Basic Training
Cornel Stefanache
 
PDF
AngularJS: an introduction
Luigi De Russis
 
PPTX
The AngularJS way
Boyan Mihaylov
 
PPTX
5 angularjs features
Alexey (Mr_Mig) Migutsky
 
PDF
Angularjs architecture
Michael He
 
PPTX
Angular js
Behind D Walls
 
PPTX
Angular js architecture (v1.4.8)
Gabi Costel Lapusneanu
 
Angular js for beginners
Munir Hoque
 
Introduction to Angularjs
Manish Shekhawat
 
Advanced Tips & Tricks for using Angular JS
Simon Guest
 
Angular js
ParmarAnisha
 
AngularJS - What is it & Why is it awesome ? (with demos)
Gary Arora
 
AngularJS Best Practices
Narek Mamikonyan
 
Introduction to Angular js 2.0
Nagaraju Sangam
 
Step by Step - AngularJS
Infragistics
 
AngularJS intro
dizabl
 
Angular JS - Introduction
Sagar Acharya
 
Angular js
Manav Prasad
 
Getting Started with Angular JS
Akshay Mathur
 
AngularJS 101 - Everything you need to know to get started
Stéphane Bégaudeau
 
AngularJS Basic Training
Cornel Stefanache
 
AngularJS: an introduction
Luigi De Russis
 
The AngularJS way
Boyan Mihaylov
 
5 angularjs features
Alexey (Mr_Mig) Migutsky
 
Angularjs architecture
Michael He
 
Angular js
Behind D Walls
 
Angular js architecture (v1.4.8)
Gabi Costel Lapusneanu
 

Viewers also liked (20)

PPTX
Css frameworks
Dimitar Belchugov
 
KEY
CSS Frameworks
Web Directions
 
PDF
CSS Frameworks: Make the Right Choice (EOTW09)
Kevin Yank
 
PDF
Don’t get Bootslapped: How to Avoid Common Pitfalls with CSS Frameworks
WebVisions
 
PDF
AngularJS in 60ish Minutes - Dan Wahlin | FalafelCON 2014
FalafelSoftware
 
KEY
CSS Frameworks
Mario Hernandez
 
PPTX
Get satrted angular js
Alexandre Marreiros
 
KEY
Getting started with CSS frameworks using Zurb foundation
Melanie Archer
 
PPTX
AngularJS in 60ish Minutes
Dan Wahlin
 
PDF
Angular js
Knoldus Inc.
 
PDF
Introduction to AngularJS
Jussi Pohjolainen
 
PDF
Introduction to JavaScript
Bryan Basham
 
PDF
Fundamental JavaScript [UTC, March 2014]
Aaron Gustafson
 
PPTX
Single Page Application (SPA) using AngularJS
M R Rony
 
PDF
AngularJS Basics with Example
Sergey Bolshchikov
 
PDF
Reveal.js
Hakim El Hattab
 
PPT
Js ppt
Rakhi Thota
 
PPT
Javascript
guest03a6e6
 
PPT
JavaScript - An Introduction
Manvendra Singh
 
PDF
reveal.js 3.0.0
Hakim El Hattab
 
Css frameworks
Dimitar Belchugov
 
CSS Frameworks
Web Directions
 
CSS Frameworks: Make the Right Choice (EOTW09)
Kevin Yank
 
Don’t get Bootslapped: How to Avoid Common Pitfalls with CSS Frameworks
WebVisions
 
AngularJS in 60ish Minutes - Dan Wahlin | FalafelCON 2014
FalafelSoftware
 
CSS Frameworks
Mario Hernandez
 
Get satrted angular js
Alexandre Marreiros
 
Getting started with CSS frameworks using Zurb foundation
Melanie Archer
 
AngularJS in 60ish Minutes
Dan Wahlin
 
Angular js
Knoldus Inc.
 
Introduction to AngularJS
Jussi Pohjolainen
 
Introduction to JavaScript
Bryan Basham
 
Fundamental JavaScript [UTC, March 2014]
Aaron Gustafson
 
Single Page Application (SPA) using AngularJS
M R Rony
 
AngularJS Basics with Example
Sergey Bolshchikov
 
Reveal.js
Hakim El Hattab
 
Js ppt
Rakhi Thota
 
Javascript
guest03a6e6
 
JavaScript - An Introduction
Manvendra Singh
 
reveal.js 3.0.0
Hakim El Hattab
 
Ad

Similar to Angular js (20)

PPTX
Angularjs
sanjay joshi
 
PPTX
Valentine with Angular js - Introduction
Senthil Kumar
 
PDF
AngularJS Workshop
Gianluca Cacace
 
PPTX
Dive into Angular, part 1: Introduction
Oleksii Prohonnyi
 
PPTX
Intoduction to Angularjs
Gaurav Agrawal
 
PDF
AngularJS 101
Houssem Yahiaoui
 
PPTX
Intro to AngularJs
SolTech, Inc.
 
PPSX
Angular js
Arun Somu Panneerselvam
 
PPTX
ME vs WEB - AngularJS Fundamentals
Aviran Cohen
 
PPT
Angularjs for kolkata drupal meetup
Goutam Dey
 
PPTX
Angular workshop - Full Development Guide
Nitin Giri
 
PDF
Workshop 12: AngularJS Parte I
Visual Engineering
 
PDF
Wt unit 5 client & server side framework
PUNE VIDYARTHI GRIHA'S COLLEGE OF ENGINEERING, NASHIK
 
PPTX
AngularJs presentation
Phan Tuan
 
PDF
AngularJS Basics
Ravi Mone
 
PDF
Everything You Need To Know About AngularJS
Sina Mirhejazi
 
PPTX
Angular js
Baldeep Sohal
 
PDF
An Implementation Tour to AngularJS
rahulmonikasharma
 
PPTX
AngularJs (1.x) Presentation
Raghubir Singh
 
PPTX
Angularjs basic part01
Mohd Abdul Baquee
 
Angularjs
sanjay joshi
 
Valentine with Angular js - Introduction
Senthil Kumar
 
AngularJS Workshop
Gianluca Cacace
 
Dive into Angular, part 1: Introduction
Oleksii Prohonnyi
 
Intoduction to Angularjs
Gaurav Agrawal
 
AngularJS 101
Houssem Yahiaoui
 
Intro to AngularJs
SolTech, Inc.
 
ME vs WEB - AngularJS Fundamentals
Aviran Cohen
 
Angularjs for kolkata drupal meetup
Goutam Dey
 
Angular workshop - Full Development Guide
Nitin Giri
 
Workshop 12: AngularJS Parte I
Visual Engineering
 
Wt unit 5 client & server side framework
PUNE VIDYARTHI GRIHA'S COLLEGE OF ENGINEERING, NASHIK
 
AngularJs presentation
Phan Tuan
 
AngularJS Basics
Ravi Mone
 
Everything You Need To Know About AngularJS
Sina Mirhejazi
 
Angular js
Baldeep Sohal
 
An Implementation Tour to AngularJS
rahulmonikasharma
 
AngularJs (1.x) Presentation
Raghubir Singh
 
Angularjs basic part01
Mohd Abdul Baquee
 
Ad

Recently uploaded (20)

PDF
Thread In Android-Mastering Concurrency for Responsive Apps.pdf
Nabin Dhakal
 
PDF
Linux Certificate of Completion - LabEx Certificate
VICTOR MAESTRE RAMIREZ
 
PDF
SAP Firmaya İade ABAB Kodları - ABAB ile yazılmıl hazır kod örneği
Salih Küçük
 
PDF
Unlock Efficiency with Insurance Policy Administration Systems
Insurance Tech Services
 
PDF
MiniTool Partition Wizard Free Crack + Full Free Download 2025
bashirkhan333g
 
PPTX
Tally software_Introduction_Presentation
AditiBansal54083
 
PPTX
Transforming Mining & Engineering Operations with Odoo ERP | Streamline Proje...
SatishKumar2651
 
PDF
4K Video Downloader Plus Pro Crack for MacOS New Download 2025
bashirkhan333g
 
PPTX
Empowering Asian Contributions: The Rise of Regional User Groups in Open Sour...
Shane Coughlan
 
PDF
Why Businesses Are Switching to Open Source Alternatives to Crystal Reports.pdf
Varsha Nayak
 
PDF
Open Chain Q2 Steering Committee Meeting - 2025-06-25
Shane Coughlan
 
PDF
[Solution] Why Choose the VeryPDF DRM Protector Custom-Built Solution for You...
Lingwen1998
 
PDF
Build It, Buy It, or Already Got It? Make Smarter Martech Decisions
bbedford2
 
PPTX
Help for Correlations in IBM SPSS Statistics.pptx
Version 1 Analytics
 
PPTX
Tally_Basic_Operations_Presentation.pptx
AditiBansal54083
 
PDF
Revenue streams of the Wazirx clone script.pdf
aaronjeffray
 
PPTX
OpenChain @ OSS NA - In From the Cold: Open Source as Part of Mainstream Soft...
Shane Coughlan
 
PDF
Alarm in Android-Scheduling Timed Tasks Using AlarmManager in Android.pdf
Nabin Dhakal
 
PPTX
Homogeneity of Variance Test Options IBM SPSS Statistics Version 31.pptx
Version 1 Analytics
 
PDF
Wondershare PDFelement Pro Crack for MacOS New Version Latest 2025
bashirkhan333g
 
Thread In Android-Mastering Concurrency for Responsive Apps.pdf
Nabin Dhakal
 
Linux Certificate of Completion - LabEx Certificate
VICTOR MAESTRE RAMIREZ
 
SAP Firmaya İade ABAB Kodları - ABAB ile yazılmıl hazır kod örneği
Salih Küçük
 
Unlock Efficiency with Insurance Policy Administration Systems
Insurance Tech Services
 
MiniTool Partition Wizard Free Crack + Full Free Download 2025
bashirkhan333g
 
Tally software_Introduction_Presentation
AditiBansal54083
 
Transforming Mining & Engineering Operations with Odoo ERP | Streamline Proje...
SatishKumar2651
 
4K Video Downloader Plus Pro Crack for MacOS New Download 2025
bashirkhan333g
 
Empowering Asian Contributions: The Rise of Regional User Groups in Open Sour...
Shane Coughlan
 
Why Businesses Are Switching to Open Source Alternatives to Crystal Reports.pdf
Varsha Nayak
 
Open Chain Q2 Steering Committee Meeting - 2025-06-25
Shane Coughlan
 
[Solution] Why Choose the VeryPDF DRM Protector Custom-Built Solution for You...
Lingwen1998
 
Build It, Buy It, or Already Got It? Make Smarter Martech Decisions
bbedford2
 
Help for Correlations in IBM SPSS Statistics.pptx
Version 1 Analytics
 
Tally_Basic_Operations_Presentation.pptx
AditiBansal54083
 
Revenue streams of the Wazirx clone script.pdf
aaronjeffray
 
OpenChain @ OSS NA - In From the Cold: Open Source as Part of Mainstream Soft...
Shane Coughlan
 
Alarm in Android-Scheduling Timed Tasks Using AlarmManager in Android.pdf
Nabin Dhakal
 
Homogeneity of Variance Test Options IBM SPSS Statistics Version 31.pptx
Version 1 Analytics
 
Wondershare PDFelement Pro Crack for MacOS New Version Latest 2025
bashirkhan333g
 

Angular js