14
THAT'S CRAZY! HOW TO BUILD SINGLE PAGE WEB APPS Chris Love Tellago Inc. http://ProfessionalASPNET.com @ChrisLove

That's crazy! how to build single page web apps

Embed Size (px)

Citation preview

Page 1: That's crazy! how to build single page web apps

THAT'S CRAZY! HOW TO BUILD SINGLE PAGE WEB APPS

Chris LoveTellago Inc.http://ProfessionalASPNET.com@ChrisLove

Page 2: That's crazy! how to build single page web apps

Diamond SponsorCTREC Hilton

http://www.ctrechilton.com/

Page 3: That's crazy! how to build single page web apps

TELLAGO

Page 4: That's crazy! how to build single page web apps

NOT A VACATION SPOT

Page 5: That's crazy! how to build single page web apps

WHAT IS AN SPA?

• Can Be Very Fun

• All Content & Resources are Loaded When the Page

is Initially Loaded

• Allows for Smooth Page/Content Transitions

Page 6: That's crazy! how to build single page web apps

Home

Article

Resources Contact

Events

About

Page 7: That's crazy! how to build single page web apps

Home

Article

Resources Contact

Events

About

Page 8: That's crazy! how to build single page web apps

THINGS TO KNOW/DO Templating – Build markup on demand Destroy & Build Data Management

Tombstoning On-Demand Purge Stale Data

Page 9: That's crazy! how to build single page web apps

ARE THERE LIBRARIES Backbone.js New in ASP.NET 4

Upshot.js Navigation.js Knockout.js (if you like MVVM) http://bit.ly/zVVIG7 <- Check This

Presentation Out

Page 10: That's crazy! how to build single page web apps

BUT I AM CRAZY No My Mother Did Not Have Me Tested I Waste Hours on Nights & Weekends (&

Planes) Never Satisfied (yet)

Page 11: That's crazy! how to build single page web apps

BUT I AM CRAZY Frameworks Not Really Meeting My

Needs Browser Memory Pressures What About Deferred Content? Can I utilize localStorage/IndexDB? How big are my apps really?

Page 12: That's crazy! how to build single page web apps

USING LOCALSTORAGE Application Cache is sort of Broken Steve Souders Told Me So (it must be true)

http://bit.ly/oryAF5 http://bit.ly/fSBGhp

Google & Bing Use This Technique for Mobile

http://bit.ly/mRPhPy

Page 13: That's crazy! how to build single page web apps

DEFERRED CONTENT Load the bare minimum HTML, CSS, JS, etc

in initial site request Load Balance once initial page is rendered

in the background (sneak it in) Do a steal check later to updated content * Utilize application Cache to work offline * Works in PhoneGap

* have not implemented yet

Page 14: That's crazy! how to build single page web apps

DEMO TIME