SlideShare a Scribd company logo
Building Modern Web Apps with
ANGULARJS
SPA
Single Page Applications
Web application or website that fits
on a single web page
Provides a more fluid user experience
similar to a desktop application.
Either all necessary code (HTML, JS,
and CSS) is retrieved with a single
page load or dynamically loaded
Traditional vs SPA
Client Server
Initial request
Response
(HTML+CSS+JS)
Form Post
Response
(HTML+CSS+JS)
Client Server
Initial request
Respond
(HTML+CSS+JS)
AJAX
Response {JSON}
Techniques Frameworks
➔ Ajax - Asynchronous JS and XML
➔ Websockets
➔ Server-sent events
➔ Browser plugins
➔ Angularjs
➔ Meteor.js
➔ Ember.js
What is
AngularJS
AngularJS is a structural framework
for dynamic web apps.
AngularJS Directives
Directives are Angular’s way of bringing additional functionality to HTML
➔ Ng-app
➔ng-model
➔ ng-bind
➔ ng-click
➔ ng-controller
AngularJS Services
In AngularJS, a service is a function, or object, that is available for, and limited to, your
AngularJS application.
➔ $http
➔$timeout
➔$interval
Building Modern Web Apps with AngularJS
Modules and Controllers
angular.module(‘moduleName’,[dependencies]);
angular.module('moduleName')
.controller('controllerName', function () {
this.attributeName=”value”;
});
Expressions
<body ng-app="moduleName">
....
<div ng-controller="controllerName">
<h1>{{attributeName}}</h1>
</div>
....
</body>
Expressions [example]
<body ng-app="blogApp">
....
<div ng-controller="BlogCtrl as blog">
<h1>{{blog.title}}</h1>
</div>
....
</body>
Expressions [example 2]
<body ng-app="blogApp">
....
<div ng-controller="BlogCtrl as blog">
<h1>{{blog.title}}</h1>
<input type="text" ng-model="blog.title" value="GDG"/>
</div>
</body>
Routes
angular.config(function ($routeProvider) {
$routeProvider
.when('/', {
templateUrl: 'views/main.html',
controller: 'MainCtrl',
controllerAs: 'main'
})
.when('/about', {
templateUrl: 'views/about.html',
controller: 'AboutCtrl',
controllerAs: 'about'
})
.otherwise({
redirectTo: '/'
});
});
Views and templates
<body ng-app="blogApp">
....
<div class="container">
<div ng-view=""></div>
</div>
....
</body>
Directives ng-repeat
<body ng-app="blogApp">
....
<div ng-controller="BlogCtrl as blog">
<h1 ng-repeat="posts as post">{{post.title}}</h1>
</div>
....
</body>
Services
angular.module('moduleName')
.service('serviceName', function() {
this.functionName=function(text){
return "Hello";
};
});
Services [Example]
angular.module('blog')
.service('postService', function() {
this.getPosts=function(){
return(Json);
};
});
Ad

Recommended

Pros and Cons of developing a Thick Clientside App
Pros and Cons of developing a Thick Clientside App
Ravi Teja
 
ASP.NET MVC and ajax
ASP.NET MVC and ajax
Brij Mishra
 
Server rendering-talk
Server rendering-talk
Daiwei Lu
 
Building SPA with Kendo UI
Building SPA with Kendo UI
Lohith Goudagere Nagaraj
 
Angular pres
Angular pres
Frank Linehan
 
MVVM & Validation with Kendo UI
MVVM & Validation with Kendo UI
Lohith Goudagere Nagaraj
 
Angular workshop
Angular workshop
hoa long
 
Advantages and disadvantages of an ajax based client application
Advantages and disadvantages of an ajax based client application
Placinta Alin
 
Developing ASP.NET MVC Applications Quicker With Kendo UI
Developing ASP.NET MVC Applications Quicker With Kendo UI
Lohith Goudagere Nagaraj
 
Event sourcing your React-Flux applications
Event sourcing your React-Flux applications
Maurice De Beijer [MVP]
 
Building web applications using kendo ui and the mvvm pattern
Building web applications using kendo ui and the mvvm pattern
Aspenware
 
The A1 "AngularJS 1 Kick Start"
The A1 "AngularJS 1 Kick Start"
Christian John Felix
 
Javascript & Jquery
Javascript & Jquery
Gurpreet singh
 
Maurice de Beijer
Maurice de Beijer
CodeFest
 
Microservice Websites – Øredev 2017
Microservice Websites – Øredev 2017
Gustaf Nilsson Kotte
 
St. Louis Day of .NET 2013 - Building Your Dev and Test Sandbox with Windows ...
St. Louis Day of .NET 2013 - Building Your Dev and Test Sandbox with Windows ...
Adam Grocholski
 
Angular js Classes in Pune
Angular js Classes in Pune
harshclassboat
 
Windows Azure Cloud Services
Windows Azure Cloud Services
Shiju Varghese
 
Codestrong 2012 breakout session building your own custom cloud services
Codestrong 2012 breakout session building your own custom cloud services
Axway Appcelerator
 
Volt Showcase - Planning Poker
Volt Showcase - Planning Poker
koffeinfrei
 
Ajax
Ajax
sujaykumar
 
Ajax
Ajax
Shivam Jaiswal
 
An introduction to AngularJS
An introduction to AngularJS
Yogesh singh
 
Build a SharePoint website in 60 minutes
Build a SharePoint website in 60 minutes
Ben Robb
 
A Simpler Web App Architecture (jDays 2016)
A Simpler Web App Architecture (jDays 2016)
Gustaf Nilsson Kotte
 
Ajax Basics And Framework
Ajax Basics And Framework
shivas
 
Why magic
Why magic
Eyal Vardi
 
Cloud Based Enterprise Apps using Everlive
Cloud Based Enterprise Apps using Everlive
Dhananjay Kumar
 
Angular 1.5 Components
Angular 1.5 Components
José Barbosa
 
Introduction to AngularJs
Introduction to AngularJs
murtazahaveliwala
 

More Related Content

What's hot (20)

Developing ASP.NET MVC Applications Quicker With Kendo UI
Developing ASP.NET MVC Applications Quicker With Kendo UI
Lohith Goudagere Nagaraj
 
Event sourcing your React-Flux applications
Event sourcing your React-Flux applications
Maurice De Beijer [MVP]
 
Building web applications using kendo ui and the mvvm pattern
Building web applications using kendo ui and the mvvm pattern
Aspenware
 
The A1 "AngularJS 1 Kick Start"
The A1 "AngularJS 1 Kick Start"
Christian John Felix
 
Javascript & Jquery
Javascript & Jquery
Gurpreet singh
 
Maurice de Beijer
Maurice de Beijer
CodeFest
 
Microservice Websites – Øredev 2017
Microservice Websites – Øredev 2017
Gustaf Nilsson Kotte
 
St. Louis Day of .NET 2013 - Building Your Dev and Test Sandbox with Windows ...
St. Louis Day of .NET 2013 - Building Your Dev and Test Sandbox with Windows ...
Adam Grocholski
 
Angular js Classes in Pune
Angular js Classes in Pune
harshclassboat
 
Windows Azure Cloud Services
Windows Azure Cloud Services
Shiju Varghese
 
Codestrong 2012 breakout session building your own custom cloud services
Codestrong 2012 breakout session building your own custom cloud services
Axway Appcelerator
 
Volt Showcase - Planning Poker
Volt Showcase - Planning Poker
koffeinfrei
 
Ajax
Ajax
sujaykumar
 
Ajax
Ajax
Shivam Jaiswal
 
An introduction to AngularJS
An introduction to AngularJS
Yogesh singh
 
Build a SharePoint website in 60 minutes
Build a SharePoint website in 60 minutes
Ben Robb
 
A Simpler Web App Architecture (jDays 2016)
A Simpler Web App Architecture (jDays 2016)
Gustaf Nilsson Kotte
 
Ajax Basics And Framework
Ajax Basics And Framework
shivas
 
Why magic
Why magic
Eyal Vardi
 
Cloud Based Enterprise Apps using Everlive
Cloud Based Enterprise Apps using Everlive
Dhananjay Kumar
 
Developing ASP.NET MVC Applications Quicker With Kendo UI
Developing ASP.NET MVC Applications Quicker With Kendo UI
Lohith Goudagere Nagaraj
 
Event sourcing your React-Flux applications
Event sourcing your React-Flux applications
Maurice De Beijer [MVP]
 
Building web applications using kendo ui and the mvvm pattern
Building web applications using kendo ui and the mvvm pattern
Aspenware
 
Maurice de Beijer
Maurice de Beijer
CodeFest
 
Microservice Websites – Øredev 2017
Microservice Websites – Øredev 2017
Gustaf Nilsson Kotte
 
St. Louis Day of .NET 2013 - Building Your Dev and Test Sandbox with Windows ...
St. Louis Day of .NET 2013 - Building Your Dev and Test Sandbox with Windows ...
Adam Grocholski
 
Angular js Classes in Pune
Angular js Classes in Pune
harshclassboat
 
Windows Azure Cloud Services
Windows Azure Cloud Services
Shiju Varghese
 
Codestrong 2012 breakout session building your own custom cloud services
Codestrong 2012 breakout session building your own custom cloud services
Axway Appcelerator
 
Volt Showcase - Planning Poker
Volt Showcase - Planning Poker
koffeinfrei
 
An introduction to AngularJS
An introduction to AngularJS
Yogesh singh
 
Build a SharePoint website in 60 minutes
Build a SharePoint website in 60 minutes
Ben Robb
 
A Simpler Web App Architecture (jDays 2016)
A Simpler Web App Architecture (jDays 2016)
Gustaf Nilsson Kotte
 
Ajax Basics And Framework
Ajax Basics And Framework
shivas
 
Cloud Based Enterprise Apps using Everlive
Cloud Based Enterprise Apps using Everlive
Dhananjay Kumar
 

Viewers also liked (9)

Angular 1.5 Components
Angular 1.5 Components
José Barbosa
 
Introduction to AngularJs
Introduction to AngularJs
murtazahaveliwala
 
Componentes en angularjs 1.5
Componentes en angularjs 1.5
Hugo Biarge
 
Dependency injection
Dependency injection
Mindfire Solutions
 
FrontEnd platform based on AngularJS
FrontEnd platform based on AngularJS
Egor Miasnikov
 
Comment réussir son projet en Angular 1.5 ?
Comment réussir son projet en Angular 1.5 ?
Maxime Bernard
 
AngularJS Beginners Workshop
AngularJS Beginners Workshop
Sathish VJ
 
Scope demystified - AngularJS
Scope demystified - AngularJS
Sumanth krishna
 
Creating GUI Component APIs in Angular and Web Components
Creating GUI Component APIs in Angular and Web Components
Rachael L Moore
 
Angular 1.5 Components
Angular 1.5 Components
José Barbosa
 
Componentes en angularjs 1.5
Componentes en angularjs 1.5
Hugo Biarge
 
FrontEnd platform based on AngularJS
FrontEnd platform based on AngularJS
Egor Miasnikov
 
Comment réussir son projet en Angular 1.5 ?
Comment réussir son projet en Angular 1.5 ?
Maxime Bernard
 
AngularJS Beginners Workshop
AngularJS Beginners Workshop
Sathish VJ
 
Scope demystified - AngularJS
Scope demystified - AngularJS
Sumanth krishna
 
Creating GUI Component APIs in Angular and Web Components
Creating GUI Component APIs in Angular and Web Components
Rachael L Moore
 
Ad

Similar to Building Modern Web Apps with AngularJS (20)

Angularjs basic part01
Angularjs basic part01
Mohd Abdul Baquee
 
AngularJS is awesome
AngularJS is awesome
Eusebiu Schipor
 
Intro to AngularJS
Intro to AngularJS
Sparkhound Inc.
 
Angular js introduction
Angular js introduction
Praveen Gubbala
 
Angular JS training institute in Jaipur
Angular JS training institute in Jaipur
HEMANT SAXENA
 
Angular Js
Angular Js
Knoldus Inc.
 
Angular js
Angular js
Silver Touch Technologies Ltd
 
Anjular js
Anjular js
Naga Dinesh
 
Intoduction to Angularjs
Intoduction to Angularjs
Gaurav Agrawal
 
Tech io spa_angularjs_20130814_v0.9.5
Tech io spa_angularjs_20130814_v0.9.5
Ganesh Kondal
 
Ng-init
Ng-init
Hamdi Hmidi
 
Ng-init
Ng-init
Hamdi Hmidi
 
Angular JS
Angular JS
Vithika Gupta
 
AngularJS - a radically different way of building Single Page Apps
AngularJS - a radically different way of building Single Page Apps
jivkopetiov
 
Angular js 1.3 basic tutorial
Angular js 1.3 basic tutorial
Al-Mutaz Bellah Salahat
 
Angular JS, A dive to concepts
Angular JS, A dive to concepts
Abhishek Sur
 
Angularjs
Angularjs
Sabin Tamrakar
 
One Weekend With AngularJS
One Weekend With AngularJS
Yashobanta Bai
 
AngularJS Introduction
AngularJS Introduction
Carlos Morales
 
AngularJS 1.x - your first application (problems and solutions)
AngularJS 1.x - your first application (problems and solutions)
Igor Talevski
 
Angular JS training institute in Jaipur
Angular JS training institute in Jaipur
HEMANT SAXENA
 
Intoduction to Angularjs
Intoduction to Angularjs
Gaurav Agrawal
 
Tech io spa_angularjs_20130814_v0.9.5
Tech io spa_angularjs_20130814_v0.9.5
Ganesh Kondal
 
AngularJS - a radically different way of building Single Page Apps
AngularJS - a radically different way of building Single Page Apps
jivkopetiov
 
Angular JS, A dive to concepts
Angular JS, A dive to concepts
Abhishek Sur
 
One Weekend With AngularJS
One Weekend With AngularJS
Yashobanta Bai
 
AngularJS Introduction
AngularJS Introduction
Carlos Morales
 
AngularJS 1.x - your first application (problems and solutions)
AngularJS 1.x - your first application (problems and solutions)
Igor Talevski
 
Ad

Recently uploaded (20)

NVIDIA Artificial Intelligence Ecosystem and Workflows
NVIDIA Artificial Intelligence Ecosystem and Workflows
SandeepKS52
 
Step by step guide to install Flutter and Dart
Step by step guide to install Flutter and Dart
S Pranav (Deepu)
 
Microsoft Business-230T01A-ENU-PowerPoint_01.pptx
Microsoft Business-230T01A-ENU-PowerPoint_01.pptx
soulamaabdoulaye128
 
Folding Cheat Sheet # 9 - List Unfolding 𝑢𝑛𝑓𝑜𝑙𝑑 as the Computational Dual of ...
Folding Cheat Sheet # 9 - List Unfolding 𝑢𝑛𝑓𝑜𝑙𝑑 as the Computational Dual of ...
Philip Schwarz
 
Best MLM Compensation Plans for Network Marketing Success in 2025
Best MLM Compensation Plans for Network Marketing Success in 2025
LETSCMS Pvt. Ltd.
 
Sysinfo OST to PST Converter Infographic
Sysinfo OST to PST Converter Infographic
SysInfo Tools
 
Looking for a BIRT Report Alternative Here’s Why Helical Insight Stands Out.pdf
Looking for a BIRT Report Alternative Here’s Why Helical Insight Stands Out.pdf
Varsha Nayak
 
Software Testing & it’s types (DevOps)
Software Testing & it’s types (DevOps)
S Pranav (Deepu)
 
Reimagining Software Development and DevOps with Agentic AI
Reimagining Software Development and DevOps with Agentic AI
Maxim Salnikov
 
Smadav Pro 2025 Rev 15.4 Crack Full Version With Registration Key
Smadav Pro 2025 Rev 15.4 Crack Full Version With Registration Key
joybepari360
 
Open Source Software Development Methods
Open Source Software Development Methods
VICTOR MAESTRE RAMIREZ
 
Migrating to Azure Cosmos DB the Right Way
Migrating to Azure Cosmos DB the Right Way
Alexander (Alex) Komyagin
 
A Guide to Telemedicine Software Development.pdf
A Guide to Telemedicine Software Development.pdf
Olivero Bozzelli
 
Artificial Intelligence Workloads and Data Center Management
Artificial Intelligence Workloads and Data Center Management
SandeepKS52
 
Women in Tech: Marketo Engage User Group - June 2025 - AJO with AWS
Women in Tech: Marketo Engage User Group - June 2025 - AJO with AWS
BradBedford3
 
GDG Douglas - Google AI Agents: Your Next Intern?
GDG Douglas - Google AI Agents: Your Next Intern?
felipeceotto
 
ElectraSuite_Prsentation(online voting system).pptx
ElectraSuite_Prsentation(online voting system).pptx
mrsinankhan01
 
Advanced Token Development - Decentralized Innovation
Advanced Token Development - Decentralized Innovation
arohisinghas720
 
Download Adobe Illustrator Crack free for Windows 2025?
Download Adobe Illustrator Crack free for Windows 2025?
grete1122g
 
HYBRIDIZATION OF ALKANES AND ALKENES ...
HYBRIDIZATION OF ALKANES AND ALKENES ...
karishmaduhijod1
 
NVIDIA Artificial Intelligence Ecosystem and Workflows
NVIDIA Artificial Intelligence Ecosystem and Workflows
SandeepKS52
 
Step by step guide to install Flutter and Dart
Step by step guide to install Flutter and Dart
S Pranav (Deepu)
 
Microsoft Business-230T01A-ENU-PowerPoint_01.pptx
Microsoft Business-230T01A-ENU-PowerPoint_01.pptx
soulamaabdoulaye128
 
Folding Cheat Sheet # 9 - List Unfolding 𝑢𝑛𝑓𝑜𝑙𝑑 as the Computational Dual of ...
Folding Cheat Sheet # 9 - List Unfolding 𝑢𝑛𝑓𝑜𝑙𝑑 as the Computational Dual of ...
Philip Schwarz
 
Best MLM Compensation Plans for Network Marketing Success in 2025
Best MLM Compensation Plans for Network Marketing Success in 2025
LETSCMS Pvt. Ltd.
 
Sysinfo OST to PST Converter Infographic
Sysinfo OST to PST Converter Infographic
SysInfo Tools
 
Looking for a BIRT Report Alternative Here’s Why Helical Insight Stands Out.pdf
Looking for a BIRT Report Alternative Here’s Why Helical Insight Stands Out.pdf
Varsha Nayak
 
Software Testing & it’s types (DevOps)
Software Testing & it’s types (DevOps)
S Pranav (Deepu)
 
Reimagining Software Development and DevOps with Agentic AI
Reimagining Software Development and DevOps with Agentic AI
Maxim Salnikov
 
Smadav Pro 2025 Rev 15.4 Crack Full Version With Registration Key
Smadav Pro 2025 Rev 15.4 Crack Full Version With Registration Key
joybepari360
 
Open Source Software Development Methods
Open Source Software Development Methods
VICTOR MAESTRE RAMIREZ
 
A Guide to Telemedicine Software Development.pdf
A Guide to Telemedicine Software Development.pdf
Olivero Bozzelli
 
Artificial Intelligence Workloads and Data Center Management
Artificial Intelligence Workloads and Data Center Management
SandeepKS52
 
Women in Tech: Marketo Engage User Group - June 2025 - AJO with AWS
Women in Tech: Marketo Engage User Group - June 2025 - AJO with AWS
BradBedford3
 
GDG Douglas - Google AI Agents: Your Next Intern?
GDG Douglas - Google AI Agents: Your Next Intern?
felipeceotto
 
ElectraSuite_Prsentation(online voting system).pptx
ElectraSuite_Prsentation(online voting system).pptx
mrsinankhan01
 
Advanced Token Development - Decentralized Innovation
Advanced Token Development - Decentralized Innovation
arohisinghas720
 
Download Adobe Illustrator Crack free for Windows 2025?
Download Adobe Illustrator Crack free for Windows 2025?
grete1122g
 
HYBRIDIZATION OF ALKANES AND ALKENES ...
HYBRIDIZATION OF ALKANES AND ALKENES ...
karishmaduhijod1
 

Building Modern Web Apps with AngularJS