SlideShare a Scribd company logo
HOW TOSTRUCTURE LARGE APPLICATIONS WITH ANGULARJS
by STEFAN UNTERHOFER
SOFTWARE DEVELOPER AT CATALYSTS
PART 1THE PREMISE
COMPLETE REWRITE OF A LARGE
APPLICATION
JAVA BACKEND
ANGULARJS FRONTEND
MORE THAN 10 SUBMODULES
MULTIPLE TEAMS WORKING ON THE SAME CODEBASE
MOST DEVS HAVE NO JS EXPERIENCE
PART 2PROJECT STRUCTURE
SEPARATE DEVELOPMENT STYLES FOR
BACKEND AND FRONTEND
GRUNT & BOWER FOR FRONTEND MODULES
COMPLETELY ENCAPSULATED ANGULAR
MODULES
BUILD THE WHOLE APPLICATION WITH
GRADLE
PART 3SOME GOOD PRACTICES
DON'T USE SERVER-SIDE
FRAMEWORKS TO RENDER
PAGES
WRITE DOMAIN
CLASSES
THEY MAKE YOUR CODE MORE
UNDERSTANDABLE
THEY CAN BE EXTENDED WITH CUSTOM
FUNCTIONALITY
USE AN API
SERVICE
// configure the API endpoint
angular.module('example').config(function($apiProvider) {
$apiProvider.endpoint('movie', {
url: 'movies',
model: window.Movie
});
});
// use it in the controller
angular.module('example').controller('ExampleCtrl',function($scope,$api){
$api.movie.list().then(function(data) {
$scope.movies = data;
});
});
IT'S A SINGLE SOURCE OF TRUTH
IT'S A COMMON INTERFACE FOR YOUR API
IT'S EASIER TO TEST
DON'T REPEAT
YOURSELF!
EXTENDING CONTROLLERS
var BasePaginationCtrl = function($scope) {
$scope.pagination = { page: 1, size: 10 };
};
angular.module('example')
.controller('ExampleCtrl', function($injector, $scope) {
// extend the BasePaginationCtrl
$injector.invoke(BasePaginationCtrl, this, {$scope: $scope});
});
MIXINS
var PaginationMixin = function() {
this.page = 1;
this.size = 10;
}
angular.module('example').controller('ExampleCtrl', function($scope) {
// add PaginationMixin functionality to $scope
angular.extend($scope, new PaginationMixin());
});
COMPOSITION WITH JS OBJECTS
var Pagination = function() {
this.page = 1;
this.size = 10;
}
angular.module('example').controller('ExampleCtrl', function($scope) {
$scope.pagination = new Pagination();
});
AVOID SCOPE
INHERITANCE
USE DIRECTIVES
WHENEVER ITS
POSSIBLE
UNIFIED LOOK AND FEEL
ABSTRACT COMMONLY USED LOGIC
ONE DIRECTIVE TO PAGE THEM ALL
<mme-paginated api="movieApi" collection="movies">
<!-- insert your table/list here! -->
</mme-paginated>
github.com/fewagewasd/angular-multimodule-example
the end

More Related Content

PPTX
Angular Universal
PDF
Sencha Cmd Quick Start
PDF
Hybrid Apps, Ionic framework
PPTX
Cross browser Testing JavaScript
PPTX
Gab2015 sam p_danielt_emilienp_legacycodeatelier
PDF
Webpack and angularjs
PDF
Angular Universal
Sencha Cmd Quick Start
Hybrid Apps, Ionic framework
Cross browser Testing JavaScript
Gab2015 sam p_danielt_emilienp_legacycodeatelier
Webpack and angularjs

What's hot (20)

PDF
Angular 2.0
PPTX
Android Training For Beginner @DILO Bandung
PPT
www.softtest.ie presents Selenium 2 With David Burn's
PPTX
European SharePoint Conference 2017 - SharePoint Framework, Angular & Azure F...
PPTX
Cooking Recipe App
ODP
iOS Automation with Cucumber, Appium and Saucelabs
PPTX
Cross browser testing
PPTX
12. Android Basic Google Map
PDF
Introduction to azure web applications for office and share point developers
PDF
The Ring programming language version 1.10 book - Part 5 of 212
PPT
Spring Roo and the Cloud (Tutorial) [5th IndicThreads.com Conference On Java,...
PDF
Spring MVC
PPTX
Mobile apps using meteor - Part 1
PPTX
Angular Universal
PDF
Why Would A Programmer Fall In Love With SPA?
PPTX
31. Magento Meetup Austria: News
PPTX
Decapitating Selenium with JavaScript
ODP
iOS Developers Conference-iOS Automation with Cucumber, Appium and Saucelabs
PPTX
Walk in the shoe of angular
PDF
Addon sdk content scripts
Angular 2.0
Android Training For Beginner @DILO Bandung
www.softtest.ie presents Selenium 2 With David Burn's
European SharePoint Conference 2017 - SharePoint Framework, Angular & Azure F...
Cooking Recipe App
iOS Automation with Cucumber, Appium and Saucelabs
Cross browser testing
12. Android Basic Google Map
Introduction to azure web applications for office and share point developers
The Ring programming language version 1.10 book - Part 5 of 212
Spring Roo and the Cloud (Tutorial) [5th IndicThreads.com Conference On Java,...
Spring MVC
Mobile apps using meteor - Part 1
Angular Universal
Why Would A Programmer Fall In Love With SPA?
31. Magento Meetup Austria: News
Decapitating Selenium with JavaScript
iOS Developers Conference-iOS Automation with Cucumber, Appium and Saucelabs
Walk in the shoe of angular
Addon sdk content scripts
Ad

Viewers also liked (20)

PDF
KULTPRIT LookBook %231
PPT
Cto forum nirav_kapadia_2006_03_31_2006
PPT
Broadband tech 2005
PPT
Hitesh renuwel
PDF
DOCX
Journal
PPTX
Official short presentation (eng)
PDF
Have a taste of Cocktail Advertising - Digital & Social Media
PPT
Ctolinux 2001
PDF
Bitcoin 101 - Certified Bitcoin Professional Training Session
PPT
Ping solutions overview_111904
PDF
Spring2016Report
DOCX
English essay
PPTX
Observasi pendidikan
PPT
Video presentation
PPT
Hitesh cross cultural comm in business
PPTX
Psych comic strip
DOCX
A lot young people nowadays don
KULTPRIT LookBook %231
Cto forum nirav_kapadia_2006_03_31_2006
Broadband tech 2005
Hitesh renuwel
Journal
Official short presentation (eng)
Have a taste of Cocktail Advertising - Digital & Social Media
Ctolinux 2001
Bitcoin 101 - Certified Bitcoin Professional Training Session
Ping solutions overview_111904
Spring2016Report
English essay
Observasi pendidikan
Video presentation
Hitesh cross cultural comm in business
Psych comic strip
A lot young people nowadays don
Ad

Similar to How To Structure Large Applications With AngularJS (20)

PPTX
Mean stack Magics
PDF
saurabh_sharma_2015
PPTX
Cross Platform Mobile Technologies
PPTX
Java script framework
PPT
eRCP Overview and Update '06
PDF
Azure web apps
PDF
Angular JS 2_0 BCS CTO_in_Res V3
PPTX
Best Practices for Cross-Platform Native Applications
DOCX
Mufeedh_3 .10 Years Exp_Java
PDF
Angular js mobile jsday 2014 - Verona 14 may
PPTX
Using Azure Functions for Integration
PPTX
Major-Project-Final-Semester-Rohan-Baranwal
PPTX
GOSIM 2024 - GenUI: Declarative Rust Cross-platform Framework Based on Makepad
DOCX
Resume (2).docx
PDF
Ease of full Stack Development
PDF
20210411 全端網頁開發起手式:建構並佈署Angular網頁應用程式至GCP
PDF
Full Stack Web Development: Vision, Challenges and Future Scope
DOCX
All the amazing features of asp.net core
PPTX
Monolithic and Microservice architecture, Feature of Node JS 10, HTTP2
DOC
Mean stack Magics
saurabh_sharma_2015
Cross Platform Mobile Technologies
Java script framework
eRCP Overview and Update '06
Azure web apps
Angular JS 2_0 BCS CTO_in_Res V3
Best Practices for Cross-Platform Native Applications
Mufeedh_3 .10 Years Exp_Java
Angular js mobile jsday 2014 - Verona 14 may
Using Azure Functions for Integration
Major-Project-Final-Semester-Rohan-Baranwal
GOSIM 2024 - GenUI: Declarative Rust Cross-platform Framework Based on Makepad
Resume (2).docx
Ease of full Stack Development
20210411 全端網頁開發起手式:建構並佈署Angular網頁應用程式至GCP
Full Stack Web Development: Vision, Challenges and Future Scope
All the amazing features of asp.net core
Monolithic and Microservice architecture, Feature of Node JS 10, HTTP2

Recently uploaded (20)

PDF
System and Network Administraation Chapter 3
PPTX
Reimagine Home Health with the Power of Agentic AI​
PPTX
Lecture 3: Operating Systems Introduction to Computer Hardware Systems
PDF
top salesforce developer skills in 2025.pdf
PPTX
Agentic AI : A Practical Guide. Undersating, Implementing and Scaling Autono...
PDF
Which alternative to Crystal Reports is best for small or large businesses.pdf
PPTX
Introduction to Artificial Intelligence
PDF
EN-Survey-Report-SAP-LeanIX-EA-Insights-2025.pdf
PDF
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
PPTX
Transform Your Business with a Software ERP System
PDF
How to Choose the Right IT Partner for Your Business in Malaysia
PDF
Upgrade and Innovation Strategies for SAP ERP Customers
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 41
PPTX
Operating system designcfffgfgggggggvggggggggg
PDF
PTS Company Brochure 2025 (1).pdf.......
PDF
Understanding Forklifts - TECH EHS Solution
PPTX
L1 - Introduction to python Backend.pptx
PDF
Digital Strategies for Manufacturing Companies
PPTX
CHAPTER 2 - PM Management and IT Context
PDF
Flood Susceptibility Mapping Using Image-Based 2D-CNN Deep Learnin. Overview ...
System and Network Administraation Chapter 3
Reimagine Home Health with the Power of Agentic AI​
Lecture 3: Operating Systems Introduction to Computer Hardware Systems
top salesforce developer skills in 2025.pdf
Agentic AI : A Practical Guide. Undersating, Implementing and Scaling Autono...
Which alternative to Crystal Reports is best for small or large businesses.pdf
Introduction to Artificial Intelligence
EN-Survey-Report-SAP-LeanIX-EA-Insights-2025.pdf
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
Transform Your Business with a Software ERP System
How to Choose the Right IT Partner for Your Business in Malaysia
Upgrade and Innovation Strategies for SAP ERP Customers
Internet Downloader Manager (IDM) Crack 6.42 Build 41
Operating system designcfffgfgggggggvggggggggg
PTS Company Brochure 2025 (1).pdf.......
Understanding Forklifts - TECH EHS Solution
L1 - Introduction to python Backend.pptx
Digital Strategies for Manufacturing Companies
CHAPTER 2 - PM Management and IT Context
Flood Susceptibility Mapping Using Image-Based 2D-CNN Deep Learnin. Overview ...

How To Structure Large Applications With AngularJS