SlideShare a Scribd company logo
End-to-End SPA Development
using ASP.NET and AngularJS
Gil Fink
CEO and Senior Consultant, sparXys
Single Page Applications
Managers and SPA
Trying to solve the puzzle of single page application…
Even the Shortened Name
is Misleading…
Let’s build a SPA?
About Me
• sparXys CEO and Senior consultant
• ASP.NET/IIS Microsoft MVP
• Co-author of Pro Single Page Application
Development (Apress)
• Co-author of 4 Microsoft Official Courses (MOCs)
• Co-organizer of GDG Rashlatz
Agenda
• The Road to Single Page Applications
• What is a SPA?
• SPA Building Blocks
• ASP.NET MVC/Web API in the Backend
• AngularJS in the Front-End
The Road to SPAs
1990
HTML
HTTP
1995
Java
Applets
1996
CSS
JavaScript
Flash
1997
HTML 4
2005
Ajax is a
buzzword
2006
work on
HTML5
starts
2007
Silverlight
Mobile Web
Traditional Websites
OMG! not this kind of traditional website please!
Traditional Native Apps
Native apps – we love installation experience… Not!
What is a SPA?
Web Application
No full page
submit
No full page
refresh
No embedded
objects
(plugins)
Client-side
templating
and routing
Why to Develop SPAs?
Feature Web App Native App Single Page
App
Cross Platform
functionality
V X V
Client State
Management
X V V
No Installation
required
V X V
Web
App
Native
App
SPA
SPA Building Blocks
HTML5
JavaScript Libraries
Ajax
REST
SPA
Web API
Routing
HTML5
• Supported by most modern browsers
o www.caniuse.com
• Includes new JavaScript APIs that can help to:
o Store data locally
o Persist data across application shutdowns
o Communicate with the server in new ways
o Increase web performance with new specifications and APIs
Ajax
• Asynchronous JavaScript and XML
o No XML these days…
o Asynchronous JavaScript and JSON (Ajaj) today
• Asynchronously call server endpoints
• You can
o Maintain state in the client side
o Go to the server asynchronously
o Render elements without full page refresh using JavaScript
JavaScript
Libraries/Frameworks
Any application that can be
written in
JavaScript, will eventually
be written in JavaScript
Atwood's Law
REST
• REpresntational State Transfer
• Architecture style for working with HTTP
• Using HTTP verbs (POST, GET, PUT, DELETE)
o Performs Create, Read, Update and Delete operations respectively
o Can also use other HTTP verbs
• Can receive and send data in variety of formats
o JSON, XML, HTML, XHTML, Blob and more
Web API
• The server is used mostly as API
o Each API function is an endpoint
• No need for server page rendering
• No need for server routing
Client-Side Routing
• All routing is performed in the client-side
• You use a routing library/framework
o Or your own implementation on top of HTML5 History API
• When a route changes
o The library/framework intercepts the navigation and performs your
functionality
DEMO
OurCompany SPA
Let’s Get started
Server Side
End to-End SPA Development Using ASP.NET and AngularJS
Demo
File -> New Project -> ASP.NET with MVC and Web API
ASP.NET MVC 101
Controller
(Input)
Model
(Logic)
View
(Presentation)
ASP.NET MVC Players
• Model
o Responsible to hold data
o Sometimes include constraints such as validation
• View
o Responsible to render the view into HTML
o Uses the Razor view engine
• Controller
o Responsible for handling user requests
o User request is mapped to an action on the controller
How Does MVC Work?
Request
View
Controller
Response
Controller
Handles input
(HTTP requests)
View
Visually represents
the model
Demo
MVC in Action
ASP.NET Web API 101
• Web API is designed to leverage the HTTP protocol
• Uses Convention over configuration for actions
o URI + Verb = Controller + Action
• Includes a lot of HTTP concepts built-in
o For example content negotiation or HTTP caching
Demo
Web API in Action
ASP.NET Routing
• Routing is built into ASP.NET
o Can be used by MVC and Web API
• Maps the physical files to logical URLs
• Provides meaningful URLs
• Readable for
o Search engines
o End users
Demo
ASP.NET Routing
How Does ASP.NET Fit
for SPAs?
• ASP.NET MVC acts
o As the single page generator
o As templates generator
o Can help to leverage server side mechanisms when they are needed
• ASP.NET Web API acts
o As the gateway to handle server operations
o As the application API
Front-End
End to-End SPA Development Using ASP.NET and AngularJS
AngularJS?
• A MVW framework
• Developed and supported by Google
• Open source
• No external dependencies
• Very opinionated
Demo
Adding AngularJS to Our Project
AngularJS Building
Blocks
Module
Module
Module
Scope Controller ServiceTemplate
Filter Directive
Two-
Way
Binding
Dependency
Injection
Routing
Controllers
Module
Module
Module
Scope Controller ServiceTemplate
Filter Directive
Dependency
Injection
Routing
Controllers
• The logic behind a view part
• Holds a child scope
o Used as a view-model
• Orchestrators for
o View operations through the scope
o Services
Scopes
• The glue between a controller and a view
• Include properties and the functions set by
controllers that a view can later use
var myApp = angular.module(‘myApp’,[]);
myApp.controller(‘MyController‘, function($scope) {
$scope.message = ‘hello’;
$scope.myFunc = function() {
// do something
}
});
Demo
Controllers
Services
Module
Module
Module
Scope Controller ServiceTemplate
Filter Directive
Dependency
Injection
Routing
Services
• Singleton objects that are used to perform a
specific task
• UI independent
o Shouldn’t manipulate UI elements
• Has different types
o Each type has its own purpose
SERVICE TYPE DESCRIPTION
value The injector will return the exact value
factory The injector will invoke the given factory function
service
The injector will use the new keyword to create the
service single instance
provider The injector will invoke the provider’s $get function
Services – Cont.
• Service declaration example:
var myApp = angular.module(‘myApp’,[]);
myApp.value(‘myValue’, ‘a constant value);
myApp.factory(‘myFactory’, function(name) {
return ‘Hi ‘ + name;
}
Built-in Services
• AngularJS comes with several built-in services
• You can use services such as:
o $http – for communicating over HTTP with remote servers
o $resource – for communicating with REST services
o $q – for creation of promises
o $log – for logging
o $window – for communicating with the window object
o Many more
Demo
Services
Directives
Module
Module
Module
Scope Controller ServiceTemplate
Filter Directive
Dependency
Injection
Routing
Directives
• Custom HTML elements and attributes that
AngularJS recognizes as part of its ecosystem
• Allow to
o Extend the existing HTML with your own elements or attributes
o Add behavior to existing elements or attributes
• Angular includes a long list of built-in directives such
as:
o ng-app – to declare the main module
o ng-controller – to bind a piece of HTML to a controller
o ng-repeat – for collection iterator
o ng-eventName – add custom behavior on a specific event
o Many more
Custom Directives
• You can create your own custom directives
• Use the module directive function and return a
Directive Definition Object (DDO)
• DDOs include various configuration options:
o templateUrl – the URL for a template the directive will use
o Template – appends a given HTML as the child element of the element
o replace – If set to true will replace the entire element with a given
template (used with the template or templateUrl)
o scope – the scope object to use with the directive
o Many more
Custom Directives – Cont.
• Custom directive example:
myApp.directive('myDialog',function () {
return {
restrict: ‘E’,
scope: {},
template: ‘<div>{{message}}</div>’,
link: function(scope, element, attrs) {
scope.message = ‘hello’;
}
};
});
Demo
Directives
Routing
Module
Module
Module
Scope Controller ServiceTemplate
Filter Directive
Dependency
Injection
Routing
Routing
• One of the most important mechanisms in SPAs
• Enables developers to intercept route changes
• Later on, helps to replace a shell element with a
rendered document fragment
• You can use an AngularJS routing module
o For example, ngRoute is a router module for AngularJS
Demo
Full Example Explained
Questions?
Summary
• SPAs are entire web applications built upon one
page and JavaScript interactions
• Very suitable for mobile development
• SPAs are one of the ways to build your next web
apps!
Resources
• Download the slide deck -
• My Blog – http://www.gilfink.net
• Follow me on Twitter – @gilfink
Thank You!
Feedback
http://tiny.cc/hybgyx

More Related Content

PPTX
Building great spa’s with angular js, asp.net mvc and webapi
Maurice De Beijer [MVP]
 
PPTX
Introduction of ASP.NET MVC and AngularJS
Mohamed Elkhodary
 
PPTX
The RAW stack
Maurice De Beijer [MVP]
 
PDF
Introduction to ASP.NET MVC
Sirwan Afifi
 
PPTX
Single page application and Framework
Chandrasekar G
 
PPTX
Angular vs React: Building modern SharePoint interfaces with SPFx
Dimcho Tsanov
 
PPTX
The RAW stack
Maurice De Beijer [MVP]
 
PPTX
Single Page Application Development with backbone.js and Simple.Web
Chris Canal
 
Building great spa’s with angular js, asp.net mvc and webapi
Maurice De Beijer [MVP]
 
Introduction of ASP.NET MVC and AngularJS
Mohamed Elkhodary
 
Introduction to ASP.NET MVC
Sirwan Afifi
 
Single page application and Framework
Chandrasekar G
 
Angular vs React: Building modern SharePoint interfaces with SPFx
Dimcho Tsanov
 
Single Page Application Development with backbone.js and Simple.Web
Chris Canal
 

What's hot (20)

PPT
Jquery
Swapnil & Patil
 
PPTX
AngularJS Scopes
Mohamed Elkhodary
 
PPTX
React or Angular and SharePoint Framework Development
Darin Dickey
 
PPTX
Modern Applications With Asp.net Core 5 and Vue JS 3
Alexandre Malavasi
 
PPTX
Building rest services using aspnetwebapi
Brij Mishra
 
PPTX
Latest Javascript MVC & Front End Frameworks 2017
AmarInfotech
 
PPTX
AngularJS vs React JS vs Node JS: Which is Best For Web Development ?
MarkupBox
 
PDF
Angular js - 10 reasons to choose angularjs
Nir Kaufman
 
PPTX
Build fast word press site in react in 30 mins with frontity
Imran Sayed
 
PPTX
Interoperability of components built with different frameworks
Souvik Basu
 
PPTX
Single Page Application (SPA) using AngularJS
M R Rony
 
PPTX
Building Modern Web Applications with ASP.NET5
Brij Mishra
 
PPTX
Introduction to Vue.js DevStaff Meetup 13.02
Paul Bele
 
PDF
JS Framework Comparison - An infographic
InApp
 
PPTX
ASP.NET MVC 4
Danijel Malik
 
PDF
Moving from PHP to a nodejs full stack CMS
Make & Build
 
PPTX
MEAN Stack
RoshanTak1
 
PPTX
From zero to hero with Docker
Maurice De Beijer [MVP]
 
PDF
Lessons in Open Source from the MongooseJS ODM
Valeri Karpov
 
KEY
SGCE 2012 Lightning Talk-Single Page Interface
Domingo Suarez Torres
 
AngularJS Scopes
Mohamed Elkhodary
 
React or Angular and SharePoint Framework Development
Darin Dickey
 
Modern Applications With Asp.net Core 5 and Vue JS 3
Alexandre Malavasi
 
Building rest services using aspnetwebapi
Brij Mishra
 
Latest Javascript MVC & Front End Frameworks 2017
AmarInfotech
 
AngularJS vs React JS vs Node JS: Which is Best For Web Development ?
MarkupBox
 
Angular js - 10 reasons to choose angularjs
Nir Kaufman
 
Build fast word press site in react in 30 mins with frontity
Imran Sayed
 
Interoperability of components built with different frameworks
Souvik Basu
 
Single Page Application (SPA) using AngularJS
M R Rony
 
Building Modern Web Applications with ASP.NET5
Brij Mishra
 
Introduction to Vue.js DevStaff Meetup 13.02
Paul Bele
 
JS Framework Comparison - An infographic
InApp
 
ASP.NET MVC 4
Danijel Malik
 
Moving from PHP to a nodejs full stack CMS
Make & Build
 
MEAN Stack
RoshanTak1
 
From zero to hero with Docker
Maurice De Beijer [MVP]
 
Lessons in Open Source from the MongooseJS ODM
Valeri Karpov
 
SGCE 2012 Lightning Talk-Single Page Interface
Domingo Suarez Torres
 
Ad

Similar to End to-End SPA Development Using ASP.NET and AngularJS (20)

PPT
Angular js
yogi_solanki
 
PPT
Angular js
Hritesh Saha
 
PPTX
Angular patterns
Premkumar M
 
PPTX
AngularJS Beginners Workshop
Sathish VJ
 
PPTX
Angular JS, A dive to concepts
Abhishek Sur
 
PPTX
Angular JS - Introduction
Sagar Acharya
 
PPTX
AngularJs Basic Concept
Hari Haran
 
PPTX
Introduction to AngularJs
murtazahaveliwala
 
PPTX
Fast Track introduction to ASP.NET MVC
Ankit Kashyap
 
PPTX
AngularJS One Day Workshop
Shyam Seshadri
 
PPTX
AngularJS
Mahmoud Tolba
 
PPTX
Mvc
Furqan Ashraf
 
PPT
Angularjs for kolkata drupal meetup
Goutam Dey
 
PPTX
Angular js 1.0-fundamentals
Venkatesh Narayanan
 
PPTX
Angularjs basic part01
Mohd Abdul Baquee
 
PPTX
Angularjs
Sabin Tamrakar
 
PDF
Spa with angular
Danny Vernovsky
 
PPTX
Webinar MVC6
Suyati Technologies
 
PPT
Getting started with angular js
Maurice De Beijer [MVP]
 
Angular js
yogi_solanki
 
Angular js
Hritesh Saha
 
Angular patterns
Premkumar M
 
AngularJS Beginners Workshop
Sathish VJ
 
Angular JS, A dive to concepts
Abhishek Sur
 
Angular JS - Introduction
Sagar Acharya
 
AngularJs Basic Concept
Hari Haran
 
Introduction to AngularJs
murtazahaveliwala
 
Fast Track introduction to ASP.NET MVC
Ankit Kashyap
 
AngularJS One Day Workshop
Shyam Seshadri
 
AngularJS
Mahmoud Tolba
 
Angularjs for kolkata drupal meetup
Goutam Dey
 
Angular js 1.0-fundamentals
Venkatesh Narayanan
 
Angularjs basic part01
Mohd Abdul Baquee
 
Angularjs
Sabin Tamrakar
 
Spa with angular
Danny Vernovsky
 
Webinar MVC6
Suyati Technologies
 
Getting started with angular js
Maurice De Beijer [MVP]
 
Ad

More from Gil Fink (20)

PDF
Becoming a Tech Speaker
Gil Fink
 
PPTX
Web animation on steroids web animation api
Gil Fink
 
PDF
The Time for Vanilla Web Components has Arrived
Gil Fink
 
PDF
Stencil the time for vanilla web components has arrived
Gil Fink
 
PDF
Stencil the time for vanilla web components has arrived
Gil Fink
 
PDF
Stencil: The Time for Vanilla Web Components has Arrived
Gil Fink
 
PDF
Stencil the time for vanilla web components has arrived
Gil Fink
 
PDF
Being a tech speaker
Gil Fink
 
PDF
Working with Data in Service Workers
Gil Fink
 
PDF
Demystifying Angular Animations
Gil Fink
 
PDF
Redux data flow with angular
Gil Fink
 
PDF
Redux data flow with angular
Gil Fink
 
PDF
Who's afraid of front end databases?
Gil Fink
 
PDF
One language to rule them all type script
Gil Fink
 
PDF
End to-end apps with type script
Gil Fink
 
PDF
Web component driven development
Gil Fink
 
PDF
Web components
Gil Fink
 
PDF
Redux data flow with angular 2
Gil Fink
 
PDF
Biological Modeling, Powered by AngularJS
Gil Fink
 
PDF
Who's afraid of front end databases
Gil Fink
 
Becoming a Tech Speaker
Gil Fink
 
Web animation on steroids web animation api
Gil Fink
 
The Time for Vanilla Web Components has Arrived
Gil Fink
 
Stencil the time for vanilla web components has arrived
Gil Fink
 
Stencil the time for vanilla web components has arrived
Gil Fink
 
Stencil: The Time for Vanilla Web Components has Arrived
Gil Fink
 
Stencil the time for vanilla web components has arrived
Gil Fink
 
Being a tech speaker
Gil Fink
 
Working with Data in Service Workers
Gil Fink
 
Demystifying Angular Animations
Gil Fink
 
Redux data flow with angular
Gil Fink
 
Redux data flow with angular
Gil Fink
 
Who's afraid of front end databases?
Gil Fink
 
One language to rule them all type script
Gil Fink
 
End to-end apps with type script
Gil Fink
 
Web component driven development
Gil Fink
 
Web components
Gil Fink
 
Redux data flow with angular 2
Gil Fink
 
Biological Modeling, Powered by AngularJS
Gil Fink
 
Who's afraid of front end databases
Gil Fink
 

Recently uploaded (20)

PDF
The Evolution of KM Roles (Presented at Knowledge Summit Dublin 2025)
Enterprise Knowledge
 
PDF
Google I/O Extended 2025 Baku - all ppts
HusseinMalikMammadli
 
PDF
Trying to figure out MCP by actually building an app from scratch with open s...
Julien SIMON
 
PPTX
What-is-the-World-Wide-Web -- Introduction
tonifi9488
 
PDF
Software Development Company | KodekX
KodekX
 
PDF
SparkLabs Primer on Artificial Intelligence 2025
SparkLabs Group
 
PDF
Advances in Ultra High Voltage (UHV) Transmission and Distribution Systems.pdf
Nabajyoti Banik
 
PDF
Presentation about Hardware and Software in Computer
snehamodhawadiya
 
PPTX
New ThousandEyes Product Innovations: Cisco Live June 2025
ThousandEyes
 
PDF
Beyond Automation: The Role of IoT Sensor Integration in Next-Gen Industries
Rejig Digital
 
PPT
Coupa-Kickoff-Meeting-Template presentai
annapureddyn
 
PPTX
OA presentation.pptx OA presentation.pptx
pateldhruv002338
 
PDF
This slide provides an overview Technology
mineshkharadi333
 
PDF
Structs to JSON: How Go Powers REST APIs
Emily Achieng
 
PDF
Automating ArcGIS Content Discovery with FME: A Real World Use Case
Safe Software
 
PDF
Accelerating Oracle Database 23ai Troubleshooting with Oracle AHF Fleet Insig...
Sandesh Rao
 
PDF
How Open Source Changed My Career by abdelrahman ismail
a0m0rajab1
 
PDF
Brief History of Internet - Early Days of Internet
sutharharshit158
 
PDF
Tea4chat - another LLM Project by Kerem Atam
a0m0rajab1
 
PPTX
cloud computing vai.pptx for the project
vaibhavdobariyal79
 
The Evolution of KM Roles (Presented at Knowledge Summit Dublin 2025)
Enterprise Knowledge
 
Google I/O Extended 2025 Baku - all ppts
HusseinMalikMammadli
 
Trying to figure out MCP by actually building an app from scratch with open s...
Julien SIMON
 
What-is-the-World-Wide-Web -- Introduction
tonifi9488
 
Software Development Company | KodekX
KodekX
 
SparkLabs Primer on Artificial Intelligence 2025
SparkLabs Group
 
Advances in Ultra High Voltage (UHV) Transmission and Distribution Systems.pdf
Nabajyoti Banik
 
Presentation about Hardware and Software in Computer
snehamodhawadiya
 
New ThousandEyes Product Innovations: Cisco Live June 2025
ThousandEyes
 
Beyond Automation: The Role of IoT Sensor Integration in Next-Gen Industries
Rejig Digital
 
Coupa-Kickoff-Meeting-Template presentai
annapureddyn
 
OA presentation.pptx OA presentation.pptx
pateldhruv002338
 
This slide provides an overview Technology
mineshkharadi333
 
Structs to JSON: How Go Powers REST APIs
Emily Achieng
 
Automating ArcGIS Content Discovery with FME: A Real World Use Case
Safe Software
 
Accelerating Oracle Database 23ai Troubleshooting with Oracle AHF Fleet Insig...
Sandesh Rao
 
How Open Source Changed My Career by abdelrahman ismail
a0m0rajab1
 
Brief History of Internet - Early Days of Internet
sutharharshit158
 
Tea4chat - another LLM Project by Kerem Atam
a0m0rajab1
 
cloud computing vai.pptx for the project
vaibhavdobariyal79
 

End to-End SPA Development Using ASP.NET and AngularJS

  • 1. End-to-End SPA Development using ASP.NET and AngularJS Gil Fink CEO and Senior Consultant, sparXys
  • 3. Managers and SPA Trying to solve the puzzle of single page application…
  • 4. Even the Shortened Name is Misleading… Let’s build a SPA?
  • 5. About Me • sparXys CEO and Senior consultant • ASP.NET/IIS Microsoft MVP • Co-author of Pro Single Page Application Development (Apress) • Co-author of 4 Microsoft Official Courses (MOCs) • Co-organizer of GDG Rashlatz
  • 6. Agenda • The Road to Single Page Applications • What is a SPA? • SPA Building Blocks • ASP.NET MVC/Web API in the Backend • AngularJS in the Front-End
  • 7. The Road to SPAs 1990 HTML HTTP 1995 Java Applets 1996 CSS JavaScript Flash 1997 HTML 4 2005 Ajax is a buzzword 2006 work on HTML5 starts 2007 Silverlight Mobile Web
  • 8. Traditional Websites OMG! not this kind of traditional website please!
  • 9. Traditional Native Apps Native apps – we love installation experience… Not!
  • 10. What is a SPA? Web Application No full page submit No full page refresh No embedded objects (plugins) Client-side templating and routing
  • 11. Why to Develop SPAs? Feature Web App Native App Single Page App Cross Platform functionality V X V Client State Management X V V No Installation required V X V Web App Native App SPA
  • 12. SPA Building Blocks HTML5 JavaScript Libraries Ajax REST SPA Web API Routing
  • 13. HTML5 • Supported by most modern browsers o www.caniuse.com • Includes new JavaScript APIs that can help to: o Store data locally o Persist data across application shutdowns o Communicate with the server in new ways o Increase web performance with new specifications and APIs
  • 14. Ajax • Asynchronous JavaScript and XML o No XML these days… o Asynchronous JavaScript and JSON (Ajaj) today • Asynchronously call server endpoints • You can o Maintain state in the client side o Go to the server asynchronously o Render elements without full page refresh using JavaScript
  • 16. Any application that can be written in JavaScript, will eventually be written in JavaScript Atwood's Law
  • 17. REST • REpresntational State Transfer • Architecture style for working with HTTP • Using HTTP verbs (POST, GET, PUT, DELETE) o Performs Create, Read, Update and Delete operations respectively o Can also use other HTTP verbs • Can receive and send data in variety of formats o JSON, XML, HTML, XHTML, Blob and more
  • 18. Web API • The server is used mostly as API o Each API function is an endpoint • No need for server page rendering • No need for server routing
  • 19. Client-Side Routing • All routing is performed in the client-side • You use a routing library/framework o Or your own implementation on top of HTML5 History API • When a route changes o The library/framework intercepts the navigation and performs your functionality
  • 24. Demo File -> New Project -> ASP.NET with MVC and Web API
  • 26. ASP.NET MVC Players • Model o Responsible to hold data o Sometimes include constraints such as validation • View o Responsible to render the view into HTML o Uses the Razor view engine • Controller o Responsible for handling user requests o User request is mapped to an action on the controller
  • 27. How Does MVC Work? Request View Controller Response Controller Handles input (HTTP requests) View Visually represents the model
  • 29. ASP.NET Web API 101 • Web API is designed to leverage the HTTP protocol • Uses Convention over configuration for actions o URI + Verb = Controller + Action • Includes a lot of HTTP concepts built-in o For example content negotiation or HTTP caching
  • 30. Demo Web API in Action
  • 31. ASP.NET Routing • Routing is built into ASP.NET o Can be used by MVC and Web API • Maps the physical files to logical URLs • Provides meaningful URLs • Readable for o Search engines o End users
  • 33. How Does ASP.NET Fit for SPAs? • ASP.NET MVC acts o As the single page generator o As templates generator o Can help to leverage server side mechanisms when they are needed • ASP.NET Web API acts o As the gateway to handle server operations o As the application API
  • 36. AngularJS? • A MVW framework • Developed and supported by Google • Open source • No external dependencies • Very opinionated
  • 38. AngularJS Building Blocks Module Module Module Scope Controller ServiceTemplate Filter Directive Two- Way Binding Dependency Injection Routing
  • 40. Controllers • The logic behind a view part • Holds a child scope o Used as a view-model • Orchestrators for o View operations through the scope o Services
  • 41. Scopes • The glue between a controller and a view • Include properties and the functions set by controllers that a view can later use var myApp = angular.module(‘myApp’,[]); myApp.controller(‘MyController‘, function($scope) { $scope.message = ‘hello’; $scope.myFunc = function() { // do something } });
  • 44. Services • Singleton objects that are used to perform a specific task • UI independent o Shouldn’t manipulate UI elements • Has different types o Each type has its own purpose SERVICE TYPE DESCRIPTION value The injector will return the exact value factory The injector will invoke the given factory function service The injector will use the new keyword to create the service single instance provider The injector will invoke the provider’s $get function
  • 45. Services – Cont. • Service declaration example: var myApp = angular.module(‘myApp’,[]); myApp.value(‘myValue’, ‘a constant value); myApp.factory(‘myFactory’, function(name) { return ‘Hi ‘ + name; }
  • 46. Built-in Services • AngularJS comes with several built-in services • You can use services such as: o $http – for communicating over HTTP with remote servers o $resource – for communicating with REST services o $q – for creation of promises o $log – for logging o $window – for communicating with the window object o Many more
  • 49. Directives • Custom HTML elements and attributes that AngularJS recognizes as part of its ecosystem • Allow to o Extend the existing HTML with your own elements or attributes o Add behavior to existing elements or attributes • Angular includes a long list of built-in directives such as: o ng-app – to declare the main module o ng-controller – to bind a piece of HTML to a controller o ng-repeat – for collection iterator o ng-eventName – add custom behavior on a specific event o Many more
  • 50. Custom Directives • You can create your own custom directives • Use the module directive function and return a Directive Definition Object (DDO) • DDOs include various configuration options: o templateUrl – the URL for a template the directive will use o Template – appends a given HTML as the child element of the element o replace – If set to true will replace the entire element with a given template (used with the template or templateUrl) o scope – the scope object to use with the directive o Many more
  • 51. Custom Directives – Cont. • Custom directive example: myApp.directive('myDialog',function () { return { restrict: ‘E’, scope: {}, template: ‘<div>{{message}}</div>’, link: function(scope, element, attrs) { scope.message = ‘hello’; } }; });
  • 54. Routing • One of the most important mechanisms in SPAs • Enables developers to intercept route changes • Later on, helps to replace a shell element with a rendered document fragment • You can use an AngularJS routing module o For example, ngRoute is a router module for AngularJS
  • 57. Summary • SPAs are entire web applications built upon one page and JavaScript interactions • Very suitable for mobile development • SPAs are one of the ways to build your next web apps!
  • 58. Resources • Download the slide deck - • My Blog – http://www.gilfink.net • Follow me on Twitter – @gilfink