Building Awesome Apps
with

&

Ben Drucker
Founder, Valet.io
!

@bendrucker
ben@valet.io
About Me

Founder

Evangelist
Why Angular?
•

Two way data binding
•

Dirty checking vs. accessors

•

Dependency injection

•

Event architecture

•

Angular is barely a framework
BAD!
<form>
<input id="first-name" />
<input id="last-name" />
<input id="username" />
</form>
var user = {
firstName: $('#first-name').val(),
lastName: $('#last-name').val(),
username: $('#username').val()
};
GOOD!
<form>
<input ng-model=“user.first” />
<input ng-model=“user.last” />
<input ng-model=“user.username” />
</form>
var user = $scope.user;
Code Time!
Let’s Talk Firebase
3 Way Data Binding
Firebase Also Helps With:
•

User management and authentication

•

Validation

•

Access rules

•

Presence

•

Transactions
Instead of REST…
Write lightweight Node workers
OR

Use	
 	
 	
 	
 	
 and go server-less
Code Time!

More Related Content

PDF
TGT#9 - Protractor: Ng-przyjazne Selenium - Mateusz Jamiołkowski
KEY
Beginning jQuery Mobile
PDF
JSの知識だけでLINE Bot作ってみる! 20170327_we are_javascripters@5th
KEY
Intro To Sammy
KEY
BrowserID review of mobile experience
PDF
JSChannel 2017 - Service Workers and the Role they Play in modern day web-apps
KEY
An Introduction to webOS
PPTX
AngularJS - a radically different way of building Single Page Apps
TGT#9 - Protractor: Ng-przyjazne Selenium - Mateusz Jamiołkowski
Beginning jQuery Mobile
JSの知識だけでLINE Bot作ってみる! 20170327_we are_javascripters@5th
Intro To Sammy
BrowserID review of mobile experience
JSChannel 2017 - Service Workers and the Role they Play in modern day web-apps
An Introduction to webOS
AngularJS - a radically different way of building Single Page Apps

Similar to Building Awesome Apps with Angular and Firebase (9)

PDF
Intro to Front End Development with Angular + Firebase
PPTX
AngularJS Fundamentals: Date Entry Forms
PPTX
Good karma: UX Patterns and Unit Testing in Angular with Karma
PDF
Beginning AngularJS
PPTX
AngularJS: What's the Big Deal?
PPTX
AngularJS One Day Workshop
PDF
Java UI Course Content
PDF
Spca2014 hillier 3rd party_javascript_libraries
PPTX
GDG Atlanta - Angular.js Demo and Workshop
Intro to Front End Development with Angular + Firebase
AngularJS Fundamentals: Date Entry Forms
Good karma: UX Patterns and Unit Testing in Angular with Karma
Beginning AngularJS
AngularJS: What's the Big Deal?
AngularJS One Day Workshop
Java UI Course Content
Spca2014 hillier 3rd party_javascript_libraries
GDG Atlanta - Angular.js Demo and Workshop
Ad

Recently uploaded (20)

PDF
From MVP to Full-Scale Product A Startup’s Software Journey.pdf
PPTX
Tartificialntelligence_presentation.pptx
PDF
A Late Bloomer's Guide to GenAI: Ethics, Bias, and Effective Prompting - Boha...
PDF
Hybrid model detection and classification of lung cancer
PDF
Assigned Numbers - 2025 - Bluetooth® Document
PPTX
observCloud-Native Containerability and monitoring.pptx
PPTX
O2C Customer Invoices to Receipt V15A.pptx
PPTX
Final SEM Unit 1 for mit wpu at pune .pptx
PDF
Zenith AI: Advanced Artificial Intelligence
PDF
Unlock new opportunities with location data.pdf
PDF
A novel scalable deep ensemble learning framework for big data classification...
PDF
ENT215_Completing-a-large-scale-migration-and-modernization-with-AWS.pdf
PDF
Univ-Connecticut-ChatGPT-Presentaion.pdf
PDF
A contest of sentiment analysis: k-nearest neighbor versus neural network
PDF
Taming the Chaos: How to Turn Unstructured Data into Decisions
PDF
Developing a website for English-speaking practice to English as a foreign la...
PDF
1 - Historical Antecedents, Social Consideration.pdf
PDF
Five Habits of High-Impact Board Members
PDF
TrustArc Webinar - Click, Consent, Trust: Winning the Privacy Game
PDF
A comparative study of natural language inference in Swahili using monolingua...
From MVP to Full-Scale Product A Startup’s Software Journey.pdf
Tartificialntelligence_presentation.pptx
A Late Bloomer's Guide to GenAI: Ethics, Bias, and Effective Prompting - Boha...
Hybrid model detection and classification of lung cancer
Assigned Numbers - 2025 - Bluetooth® Document
observCloud-Native Containerability and monitoring.pptx
O2C Customer Invoices to Receipt V15A.pptx
Final SEM Unit 1 for mit wpu at pune .pptx
Zenith AI: Advanced Artificial Intelligence
Unlock new opportunities with location data.pdf
A novel scalable deep ensemble learning framework for big data classification...
ENT215_Completing-a-large-scale-migration-and-modernization-with-AWS.pdf
Univ-Connecticut-ChatGPT-Presentaion.pdf
A contest of sentiment analysis: k-nearest neighbor versus neural network
Taming the Chaos: How to Turn Unstructured Data into Decisions
Developing a website for English-speaking practice to English as a foreign la...
1 - Historical Antecedents, Social Consideration.pdf
Five Habits of High-Impact Board Members
TrustArc Webinar - Click, Consent, Trust: Winning the Privacy Game
A comparative study of natural language inference in Swahili using monolingua...
Ad

Building Awesome Apps with Angular and Firebase