SlideShare a Scribd company logo
AngularJS 1.x - your first application (problems and solutions)
Igor Talevski
Developer @ http://it-labs.com/
2
@TalevskiIgor
Please Mute your
mobile devices
3
General Sponsors
Platinum Sponsors
Silver Sponsors
Gold Sponsors
Bronze Sponsors
4
Introduction
5
Angular learning curve
6
SPA concepts
• SPA works and feels more like an application then a web page.
• SPA separates UI and data, SPA communicates with server only with JSON REST API (Send/Receive
JSON using AJAX)
• Reducing bandwidth usage is also a plus
• SPA can use caching and local storage effectively.
• You can easily fake JSON data communication to test SPA, and you can also easily fake JSON requests
to server to write unit tests.
• Some SPAs don’t require SEO, but for those that do, the solutions aren’t straightforward.
• Analytics is harder to implement
7
Single-Page Applications (SPAs) are Web apps that load a single HTML page
and dynamically update that page as the user interacts with the app.
8
Normal page life circle
9
SPA life circle
Automatic Initialization
• load the module associated with the directive.
• create the application injector
• compile the DOM treating the ngApp directive
as the root of the compilation.
(This allows you to tell it to treat only a portion
of the DOM as an Angular application.)
10
Angular initializes automatically upon DOMContentLoaded event or when the angular.js script
is evaluated if at that time document.readyState is set to 'complete‘.
Manual Initialization
• After the page and all of the code is loaded,
find the root element of your AngularJS
application, which is typically the root of the
document.
• Call angular.bootstrap to compile the element
into an executable, bi-directionally bound
application.
11
If you need to have more control over the initialization process, you can use a manual bootstrapping
method instead. Examples of when you'd need to do this include using script loaders or the need to
perform an operation before Angular compiles a page.
12
Combine with other library
13
Combine with other library
14
Architecture
Folders by type
15
Architecture
Folders by feature
16
17
Architecture
Folders by type
Folders by feature
M I X
Application Structure LIFT Principle
• Make locating your code intuitive, simple and fast.
• When you look at a file you should instantly know what it contains and represents.
• Keep a flat folder structure as long as possible. When you get to 8+ files, begin
considering separation.
• Be DRY, but don't go nuts and sacrifice readability.
18
Structure your app such that you can Locate your code quickly Identify the
code at a glance keep the Flattest structure you can and Try to stay DRY.
19
Module
You can think of a module as a container for the different parts of your app – controllers,
services, filters, directives, etc…
Data Binding
20
Automatic synchronization of data between the model and view
Controllers
Use controllers to:
• Set up the initial state of the $scope object.
• Add behavior to the $scope object.
Do not use controllers to:
• Manipulate DOM — Controllers should contain only business logic.
• Format input — Use angular form controls instead.
• Filter output — Use angular filters instead.
• Share code or state across controllers — Use angular services instead.
• Manage the life-cycle of other components (to create service instances).
21
In Angular, a Controller is defined by a JavaScript constructor function that is used to
augment the Angular Scope.
Nesting controllers
• The root scope
• The MainController scope
• The ChildController scope
• The GrandChildController scope
22
Demo
23
Dependency Injection
24
Dependency Injection (DI) is a software design pattern that deals with how components
get hold of their dependencies.
Dependency Annotation
25
Angular invokes certain functions (like service factories and controllers) via the injector. You need to
annotate these functions so that the injector knows what services to inject into the function.
Inline Array Annotation
Property Annotation
Implicit Annotation
Useful Tools For Developers
26
Yeoman generator for
AngularJS - lets you quickly
set up a project with
sensible defaults and best
practices.
Useful Tools For Developers
27
Useful Tools For Developers
28
• (local server) The actual grunt server
• (jshint) Make sure there are no obvious mistakes
• (jscs) Make sure code styles are up to par
• (clean) Empties folders to start fresh
• (postcss) Add vendor prefixed styles
• (wiredep) Automatically inject Bower components into the app
• (compass) Compiles Sass to CSS and generates necessary files if requested
• (filerev) Renames files for browser caching purposes
• (usemin) Performs rewrites based on filerev and the useminPrepare configuration
• (ngAnnotate) *tries to make the code safe for minification automatically
• (ngTemplate) register your AngularJS templates in the $templateCache
• (livereload) Watches files for changes and runs tasks based on the changed files
• uglify, cssmin, imagemin, svgmin, htmlmin, etc ...
Useful Packages
29
• ng-constant
If you develop a website that uses multiple environments such as development, staging and
production you probably have a configuration file of sorts to handle things like database
settings, mail server credentials, and so on for your backend system.
But how do you handle such variables in the front-end? Specifically, in an AngularJS App?
Directives
• 'A' - only matches attribute name
• 'E' - only matches element name
• 'C' - only matches class name
• 'M' - only matches comment
30
At a high level, directives are markers on a DOM element (such as an attribute, element name,
comment or CSS class) that tell AngularJS's HTML compiler ($compile) to attach a specified behavior to
that DOM element (e.g. via event listeners), or even to transform the DOM element and its children.
Getting data from the server
31
Getting data from the server
32
Getting data from the server
33
• data – {string | Object} – The response body transformed with the transform functions.
• status – {number} – HTTP status code of the response.
• headers – {function([headerName])} – Header getter function.
• config – {Object} – The configuration object that was used to generate the request.
• statusText – {string} – HTTP status text of the response.
Restangular
34
35
Service Repository
36
Usage of Service Repository
37
Same-origin policy
The same-origin policy restricts how a document or script loaded from one origin can
interact with a resource from another origin. It is a critical security mechanism for
isolating potentially malicious documents.
38
HTTP status codes
39
HTTP status codes
40
HTTP status codes
https://httpstatuses.com/
AngularUI Router
41
Routing frameworks for SPAs update the browser's URL as the user nagivates through the app.
JWT
42
JSON Web Tokens are an open, industry standard RFC 7519 method for representing claims
securely between two parties.
Interceptors
43
For purposes of global error handling, authentication, or any kind of synchronous or
asynchronous pre-processing of request or postprocessing of responses, it is desirable to be
able to intercept requests before they are handed to the server and responses before they are
handed over to the application code that initiated these requests.
WebSockets
44
is an advanced technology that makes it possible to open an interactive communication
session between the user's browser and a server.
WebSockets
45
WebSockets
46
Demo
47
Complete the evaluation
and earn the chance to win
prizes in the closing raffle
http://eval.codecamp.mk
48
Questions
Thank you

More Related Content

PPT
Entity Framework Overview
PDF
Advanced Asp.Net Concepts And Constructs
PDF
Building better SQL Server Databases
PPTX
Understanding LINQ in C#
PPTX
Hibernate
PPTX
Microsoft SQL Server 2008
PPTX
SharePoint 2010 Client-side Object Model
PPTX
Entity framework code first
Entity Framework Overview
Advanced Asp.Net Concepts And Constructs
Building better SQL Server Databases
Understanding LINQ in C#
Hibernate
Microsoft SQL Server 2008
SharePoint 2010 Client-side Object Model
Entity framework code first

What's hot (20)

PPTX
Rails Request & Middlewares
PDF
Jakarta EE Recipes
PPTX
04 integrate entityframework
PPTX
LINQ in C#
PPTX
Advanced SharePoint Web Part Development
PDF
Request-Response Cycle of Ruby on Rails App
PDF
Learn Ajax here
PDF
Creating Modular Test-Driven SPAs with Spring and AngularJS
PDF
[2015/2016] Local data storage for web-based mobile apps
PPTX
Introduction to the SharePoint 2013 REST API
KEY
Introducing LINQ
PPTX
Data Access Options in SharePoint 2010
PPTX
Learn AJAX at ASIT
PPTX
SharePoint 2010 Application Development Overview
PPTX
Session 35 - Design Patterns
PPTX
ApacheCon North America 2018: Creating Spark Data Sources
PPTX
Slick – the modern way to access your Data
PPTX
06 integrate elasticsearch
PPTX
Rails Request & Middlewares
Jakarta EE Recipes
04 integrate entityframework
LINQ in C#
Advanced SharePoint Web Part Development
Request-Response Cycle of Ruby on Rails App
Learn Ajax here
Creating Modular Test-Driven SPAs with Spring and AngularJS
[2015/2016] Local data storage for web-based mobile apps
Introduction to the SharePoint 2013 REST API
Introducing LINQ
Data Access Options in SharePoint 2010
Learn AJAX at ASIT
SharePoint 2010 Application Development Overview
Session 35 - Design Patterns
ApacheCon North America 2018: Creating Spark Data Sources
Slick – the modern way to access your Data
06 integrate elasticsearch
Ad

Similar to AngularJS 1.x - your first application (problems and solutions) (20)

PPTX
Tech io spa_angularjs_20130814_v0.9.5
PDF
Play Framework and Activator
PPTX
4 Anguadasdfasdasdfasdfsdfasdfaslar (1).pptx
PPTX
Introduction to angular | Concepts and Environment setup
PPTX
Дмитрий Тежельников «Разработка вэб-решений с использованием Asp.NET.Core и ...
PPTX
SQL to NoSQL: Top 6 Questions
PDF
Web Development with Delphi and React - ITDevCon 2016
PPTX
NEXTjs.pptxfggfgfdgfgfdgfdgfdgfdgfdgfdgfg
PPTX
JavaOne2016 - How to Generate Customized Java 8 Code from Your Database [TUT4...
PPTX
How to JavaOne 2016 - Generate Customized Java 8 Code from Your Database [TUT...
PDF
react hook and wesite making structure ppt
PDF
Building scalbale cloud native apps with .NET 8
PPTX
Lightning web components
PPTX
Introduction to j2 ee frameworks
PPTX
Using MVC with Kentico 8
PPTX
mearn-stackjdksjdsfjdkofkdokodkojdj.pptx
PDF
70487.pdf
PDF
Asp 1a-aspnetmvc
PDF
Aspnetmvc 1
PDF
Getting Started with React, When You’re an Angular Developer
Tech io spa_angularjs_20130814_v0.9.5
Play Framework and Activator
4 Anguadasdfasdasdfasdfsdfasdfaslar (1).pptx
Introduction to angular | Concepts and Environment setup
Дмитрий Тежельников «Разработка вэб-решений с использованием Asp.NET.Core и ...
SQL to NoSQL: Top 6 Questions
Web Development with Delphi and React - ITDevCon 2016
NEXTjs.pptxfggfgfdgfgfdgfdgfdgfdgfdgfdgfg
JavaOne2016 - How to Generate Customized Java 8 Code from Your Database [TUT4...
How to JavaOne 2016 - Generate Customized Java 8 Code from Your Database [TUT...
react hook and wesite making structure ppt
Building scalbale cloud native apps with .NET 8
Lightning web components
Introduction to j2 ee frameworks
Using MVC with Kentico 8
mearn-stackjdksjdsfjdkofkdokodkojdj.pptx
70487.pdf
Asp 1a-aspnetmvc
Aspnetmvc 1
Getting Started with React, When You’re an Angular Developer
Ad

Recently uploaded (20)

PPTX
ManageIQ - Sprint 268 Review - Slide Deck
PPTX
history of c programming in notes for students .pptx
PDF
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
PDF
PTS Company Brochure 2025 (1).pdf.......
PDF
SAP S4 Hana Brochure 3 (PTS SYSTEMS AND SOLUTIONS)
PDF
Nekopoi APK 2025 free lastest update
PDF
Navsoft: AI-Powered Business Solutions & Custom Software Development
PPTX
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
PPTX
ai tools demonstartion for schools and inter college
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 41
PDF
System and Network Administraation Chapter 3
PPTX
CHAPTER 12 - CYBER SECURITY AND FUTURE SKILLS (1) (1).pptx
PDF
Raksha Bandhan Grocery Pricing Trends in India 2025.pdf
PDF
Design an Analysis of Algorithms II-SECS-1021-03
PPTX
ISO 45001 Occupational Health and Safety Management System
PDF
How to Choose the Right IT Partner for Your Business in Malaysia
PPTX
Operating system designcfffgfgggggggvggggggggg
PDF
Wondershare Filmora 15 Crack With Activation Key [2025
PDF
medical staffing services at VALiNTRY
ManageIQ - Sprint 268 Review - Slide Deck
history of c programming in notes for students .pptx
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
PTS Company Brochure 2025 (1).pdf.......
SAP S4 Hana Brochure 3 (PTS SYSTEMS AND SOLUTIONS)
Nekopoi APK 2025 free lastest update
Navsoft: AI-Powered Business Solutions & Custom Software Development
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
ai tools demonstartion for schools and inter college
Internet Downloader Manager (IDM) Crack 6.42 Build 41
System and Network Administraation Chapter 3
CHAPTER 12 - CYBER SECURITY AND FUTURE SKILLS (1) (1).pptx
Raksha Bandhan Grocery Pricing Trends in India 2025.pdf
Design an Analysis of Algorithms II-SECS-1021-03
ISO 45001 Occupational Health and Safety Management System
How to Choose the Right IT Partner for Your Business in Malaysia
Operating system designcfffgfgggggggvggggggggg
Wondershare Filmora 15 Crack With Activation Key [2025
medical staffing services at VALiNTRY

AngularJS 1.x - your first application (problems and solutions)

  • 2. Igor Talevski Developer @ http://it-labs.com/ 2 @TalevskiIgor
  • 4. General Sponsors Platinum Sponsors Silver Sponsors Gold Sponsors Bronze Sponsors 4
  • 7. SPA concepts • SPA works and feels more like an application then a web page. • SPA separates UI and data, SPA communicates with server only with JSON REST API (Send/Receive JSON using AJAX) • Reducing bandwidth usage is also a plus • SPA can use caching and local storage effectively. • You can easily fake JSON data communication to test SPA, and you can also easily fake JSON requests to server to write unit tests. • Some SPAs don’t require SEO, but for those that do, the solutions aren’t straightforward. • Analytics is harder to implement 7 Single-Page Applications (SPAs) are Web apps that load a single HTML page and dynamically update that page as the user interacts with the app.
  • 10. Automatic Initialization • load the module associated with the directive. • create the application injector • compile the DOM treating the ngApp directive as the root of the compilation. (This allows you to tell it to treat only a portion of the DOM as an Angular application.) 10 Angular initializes automatically upon DOMContentLoaded event or when the angular.js script is evaluated if at that time document.readyState is set to 'complete‘.
  • 11. Manual Initialization • After the page and all of the code is loaded, find the root element of your AngularJS application, which is typically the root of the document. • Call angular.bootstrap to compile the element into an executable, bi-directionally bound application. 11 If you need to have more control over the initialization process, you can use a manual bootstrapping method instead. Examples of when you'd need to do this include using script loaders or the need to perform an operation before Angular compiles a page.
  • 16. 16
  • 18. Application Structure LIFT Principle • Make locating your code intuitive, simple and fast. • When you look at a file you should instantly know what it contains and represents. • Keep a flat folder structure as long as possible. When you get to 8+ files, begin considering separation. • Be DRY, but don't go nuts and sacrifice readability. 18 Structure your app such that you can Locate your code quickly Identify the code at a glance keep the Flattest structure you can and Try to stay DRY.
  • 19. 19 Module You can think of a module as a container for the different parts of your app – controllers, services, filters, directives, etc…
  • 20. Data Binding 20 Automatic synchronization of data between the model and view
  • 21. Controllers Use controllers to: • Set up the initial state of the $scope object. • Add behavior to the $scope object. Do not use controllers to: • Manipulate DOM — Controllers should contain only business logic. • Format input — Use angular form controls instead. • Filter output — Use angular filters instead. • Share code or state across controllers — Use angular services instead. • Manage the life-cycle of other components (to create service instances). 21 In Angular, a Controller is defined by a JavaScript constructor function that is used to augment the Angular Scope.
  • 22. Nesting controllers • The root scope • The MainController scope • The ChildController scope • The GrandChildController scope 22
  • 24. Dependency Injection 24 Dependency Injection (DI) is a software design pattern that deals with how components get hold of their dependencies.
  • 25. Dependency Annotation 25 Angular invokes certain functions (like service factories and controllers) via the injector. You need to annotate these functions so that the injector knows what services to inject into the function. Inline Array Annotation Property Annotation Implicit Annotation
  • 26. Useful Tools For Developers 26 Yeoman generator for AngularJS - lets you quickly set up a project with sensible defaults and best practices.
  • 27. Useful Tools For Developers 27
  • 28. Useful Tools For Developers 28 • (local server) The actual grunt server • (jshint) Make sure there are no obvious mistakes • (jscs) Make sure code styles are up to par • (clean) Empties folders to start fresh • (postcss) Add vendor prefixed styles • (wiredep) Automatically inject Bower components into the app • (compass) Compiles Sass to CSS and generates necessary files if requested • (filerev) Renames files for browser caching purposes • (usemin) Performs rewrites based on filerev and the useminPrepare configuration • (ngAnnotate) *tries to make the code safe for minification automatically • (ngTemplate) register your AngularJS templates in the $templateCache • (livereload) Watches files for changes and runs tasks based on the changed files • uglify, cssmin, imagemin, svgmin, htmlmin, etc ...
  • 29. Useful Packages 29 • ng-constant If you develop a website that uses multiple environments such as development, staging and production you probably have a configuration file of sorts to handle things like database settings, mail server credentials, and so on for your backend system. But how do you handle such variables in the front-end? Specifically, in an AngularJS App?
  • 30. Directives • 'A' - only matches attribute name • 'E' - only matches element name • 'C' - only matches class name • 'M' - only matches comment 30 At a high level, directives are markers on a DOM element (such as an attribute, element name, comment or CSS class) that tell AngularJS's HTML compiler ($compile) to attach a specified behavior to that DOM element (e.g. via event listeners), or even to transform the DOM element and its children.
  • 31. Getting data from the server 31
  • 32. Getting data from the server 32
  • 33. Getting data from the server 33 • data – {string | Object} – The response body transformed with the transform functions. • status – {number} – HTTP status code of the response. • headers – {function([headerName])} – Header getter function. • config – {Object} – The configuration object that was used to generate the request. • statusText – {string} – HTTP status text of the response.
  • 36. 36 Usage of Service Repository
  • 37. 37 Same-origin policy The same-origin policy restricts how a document or script loaded from one origin can interact with a resource from another origin. It is a critical security mechanism for isolating potentially malicious documents.
  • 41. AngularUI Router 41 Routing frameworks for SPAs update the browser's URL as the user nagivates through the app.
  • 42. JWT 42 JSON Web Tokens are an open, industry standard RFC 7519 method for representing claims securely between two parties.
  • 43. Interceptors 43 For purposes of global error handling, authentication, or any kind of synchronous or asynchronous pre-processing of request or postprocessing of responses, it is desirable to be able to intercept requests before they are handed to the server and responses before they are handed over to the application code that initiated these requests.
  • 44. WebSockets 44 is an advanced technology that makes it possible to open an interactive communication session between the user's browser and a server.
  • 48. Complete the evaluation and earn the chance to win prizes in the closing raffle http://eval.codecamp.mk 48 Questions