SlideShare uma empresa Scribd logo
1 de 29
Baixar para ler offline
WISH LIST
server and client rendering of
single page apps
Thomas Heymann	

@thomasheymann	

github.com/cyberthom
WHAT WE’VE BUILT
WISH LIST
•  Shopping tool	

•  Track products	

	

•  Receive alerts	

•  Share lists
GOALS & OBJECTIVES
•  Improve UI	

•  Pull out wish list into separate stack of services	

•  Update front-end code using modern frameworks and best practices	

–  Perfect candidate for SPA due to mutability	

•  Minify duplication which led to inconsistencies
SHARED CONCERNS
Server	

 Client	

USER
INTERACTIONS	

LOGGING	

MONITORING	

ROUTING	

PRESENTATION
LOGIC	

APPLICATION DATA	

views / layout / templates	

models / collections /
business rules / API calls	

events / animations	

SITE FURNITURE	

ANALYTICS	

i18n	

translations / date and
currency formatting	

STYLING
•  Developers get DRY and MV*	

•  Users get best of both worlds: 	

–  fully rendered pages (instant content)	

–  responsiveness of SPA	

•  Business gets SEO	

	

•  Everybody’s happy 🌈😃🎉
ENVIRONMENT AGNOSTIC
•  EvenThoughtWorks agrees 👌	

TECH RADAR
http://www.thoughtworks.com/radar/#/techniques	

Client and server rendering with same code 	

	

Increasingly, HTML is rendered not only on the server but also on the client,
in the web browser. In many cases this split rendering will remain a necessity
but with the growing maturity of JavaScript templating libraries an interesting
approach has become viable: client and server rendering with same code. 	

HOLD ASSESS TRIAL ADOPT
ARCHITECTURE & TECH STACK
SYSTEMS OVERVIEW
WISHLIST	

 API	

SITE FURNITURE	

Aggregation Layer	

Presentation Layer	

API	

MAGAZINE	

API	

CATALOGUE	

Core Services	

& Storage
TECH STACK
SERVER	

 CLIENT	

node.js	

 IE8+	

Express	

 Backbone Router	

cheerio	

 jQuery	

Backbone	

Handlebars	

require.js	

App
•  Renders nested views	

•  Re-attaches views to DOM client-side	

APP COMPONENTS
VIEW ASSEMBLER	

ROUTER	

MODEL FACTORY	

SERIALIZER	

SYNCER	

•  Ignores duplicate requests and caches responses	

•  Injects headers	

•  Matches URLs and extracts params	

•  Executes controller logic	

•  Serializes app data to JSON server-side	

•  Deserializes app data client-side	

•  Creates models	

•  Enforces singletons for data bindings
PAGE REQUEST	

1.  Instantiate app	

2.  Dispatch route (run controller logic)	

3.  Render views	

4.  Serialize data (models/collections)	

5.  Decorate page with site furniture	

6.  Send response	

SERVER WORKFLOW
PAGE LOAD	

1.  Instantiate app	

2.  Deserialize data (models/collections)	

3.  Setup Backbone routes	

4.  Dispatch route (run controller logic)	

5.  Re-attach views	

PAGE NAVIGATION	

1.  Dispatch route (run controller logic)	

2.  Render views	

CLIENT WORKFLOW
HANDS ON
module.exports = function(options) {!
var options = options || {},!
App = options.app,!
route = options.route;!
!
return function(req, res, next) {!
var app = new App({!
language: req.params.language,!
authToken: req.cookies.sessionid!
});!
!
app!
.dispatch(route, req.params)!
.done(function(view) {!
var html = view.render().outerHTML(),!
bootstrap = JSON.stringify(app.serialize());!
res.send(html + '<script>' + bootstrap + '</script>');!
})!
.fail(next);!
};!
};!
SERVE APP MIDDLEWARE
WISH LIST CONTROLLER
route('/wishlist/:id', 'wishlist', function(id) {!
var app = this, api = app.wishlistApi;!
!
var allWishlists = api.getAllWishlists(),!
wishlist = api.getWishlist(id),!
allWishlistItems = api.getAllWishlistItems(id);!
!
var productList = new ProductListView({!
collection: allWishlistItems!
}),!
navigation = new NavigationView({!
model: wishlist,!
collection: allWishlists!
});!
mainView = new MainView({!
model: wishlist,!
views: {!
'append header': navigation,!
'inner [role=main]': productList!
}!
});!
!
return mainView.ready().then(function() {!
return mainView;!
});!
});!
MAIN TEMPLATE
<header>!
<h1>{{name}}</h1>!
!
{{#if isOwner}}!
<button>Manage</button>!
{{/if}}!
!
{{! Navigation }}!
</header>!
!
<div role="main">{{! Product List }}</div>!
CLIENT-SIDE BOOTSTRAPPING
<header>!
<h1>Wish List</h1> <button>Manage</button>!
<ul class="navigation">!
<li>...</li>!
</ul>!
</header>!
<div role="main">!
<ul class=“product-list">!
<li>...</li>!
</ul>!
</div>!
!
<script>!
var app = new App();!
!
app.deserialize({bootstrap});!
!
route('/wishlist/:id', 'wishlist', function(id) {!
app!
.dispatch(route, id)!
.done(function(view) {!
view.attach('.container');!
});!
});!
Backbone.history.start();!
</script>!
VOILA!
WHAT WE’VE LEARNED
•  Lots of code bridging differences between environments and libraries	

–  Introducing extra abstraction layer	

•  Routing is different	

–  Stateless server-side routing (new app instance for each request)	

–  Stateful client-side routing (holding on to app during page navigation)	

–  Express vs. Backbone routes (reversed order, paths, params)	

–  Redirects (302 vs. browser location)	

–  Serve mobile page based on user agent	

•  Fetching data is different (XMLHttpRequest vs. node request)	

COMPLEX PROBLEM
•  Caching is different	

–  Only ever fetch once per incoming request	

–  Tab could be left open for days	

–  Expire and re-fetch resources after x seconds client-side	

•  Error handling is different (HTTP error codes vs. popups)	

•  Sending email is borderline	

COMPLEX PROBLEM
•  Dependency management	

–  CommonJS runs client-side with browserify	

–  AMD runs server-side with require.js	

–  Both work but ideally language level support (ES6 Modules)	

•  Promises	

–  Q or jQuery Deferred	

–  Ideally one standard (ES6 Promises)	

ES5 IMMATURITY
•  Well known jQuery API for DOM manipulation and traversal	

•  Easy to pick up	

•  Can translate Backbone apps directly to the server	

•  No full blown JSDOM, but still slow	

CHEERIO
•  Airbnb Rendr	

–  One stop solution (Rendering, Serialization, Routing)	

–  Pure string concatenation using templates – Fast on the server	

–  Client-side rendering trashes and re-renders whole DOM (can cause
flicker and performance issues)	

•  Facebook React	

–  View rendering library (Bring your own MC)	

–  Virtual DOM approach: slow on the server but super fast client-side	

–  Fun fact: Inspired by DOOM III	

CHEERIO ALTERNATIVES
Rendering comment box with 1000 comments	

SERVER-SIDE PERFORMANCE
•  Very simple HTML – String concatenation will shine even more as markup
grows in complexity	

•  React has the edge over Cheerio – JSX uses precompiled objects so can be
heavily optimized byV8 (Cheerio parses strings into trees on runtime)	

RENDR	

REACT	

CHEERIO	

~ 110 ms	

~ 174 ms	

~ 204 ms
•  Load performance means time to content (not response time)	

–  Server-side DOM is slow but faster than serving empty pages	

•  Think of it as an enhancement to SPA	

–  Stateless service can be easily scaled up	

–  Respond with empty pages if load is too high and render client-side	

•  Client-side rendering performance equally important	

•  Decide per use case – In certain situations simple Express.js templating with
separate client-side JS might be better approach	

SO WHAT?
•  YES! 🌟😺✨	

•  Joy to develop once hard work is done	

•  Easy and fast to build rich UI and add new functionality	

•  But:	

•  Technique in its infants	

•  Better frameworks/solutions required	

WORTH IT?
THANKS!

Mais conteúdo relacionado

Mais procurados

A 20 minute introduction to AngularJS for XPage developers
A 20 minute introduction to AngularJS for XPage developersA 20 minute introduction to AngularJS for XPage developers
A 20 minute introduction to AngularJS for XPage developersMark Leusink
 
JavaScript Performance (at SFJS)
JavaScript Performance (at SFJS)JavaScript Performance (at SFJS)
JavaScript Performance (at SFJS)Steve Souders
 
BP101: A Modernized Workflow w/ Domino/XPages
BP101: A Modernized Workflow w/ Domino/XPagesBP101: A Modernized Workflow w/ Domino/XPages
BP101: A Modernized Workflow w/ Domino/XPagesedm00se
 
Server rendering-talk
Server rendering-talkServer rendering-talk
Server rendering-talkDaiwei Lu
 
Isomorphic React Applications: Performance And Scalability
Isomorphic React Applications: Performance And ScalabilityIsomorphic React Applications: Performance And Scalability
Isomorphic React Applications: Performance And ScalabilityDenis Izmaylov
 
Develop a vanilla.js spa you and your customers will love
Develop a vanilla.js spa you and your customers will loveDevelop a vanilla.js spa you and your customers will love
Develop a vanilla.js spa you and your customers will loveChris Love
 
Beginning MEAN Stack
Beginning MEAN StackBeginning MEAN Stack
Beginning MEAN StackRob Davarnia
 
What is Mean Stack Development ?
What is Mean Stack Development ?What is Mean Stack Development ?
What is Mean Stack Development ?Balajihope
 
JavaScript front end performance optimizations
JavaScript front end performance optimizationsJavaScript front end performance optimizations
JavaScript front end performance optimizationsChris Love
 
Testing your Single Page Application
Testing your Single Page ApplicationTesting your Single Page Application
Testing your Single Page ApplicationWekoslav Stefanovski
 
The MEAN stack - SoCalCodeCamp - june 29th 2014
The MEAN stack - SoCalCodeCamp - june 29th 2014The MEAN stack - SoCalCodeCamp - june 29th 2014
The MEAN stack - SoCalCodeCamp - june 29th 2014Simona Clapan
 
The future of web development write once, run everywhere with angular js an...
The future of web development   write once, run everywhere with angular js an...The future of web development   write once, run everywhere with angular js an...
The future of web development write once, run everywhere with angular js an...Mark Leusink
 
Making Single Page Applications (SPA) faster
Making Single Page Applications (SPA) faster Making Single Page Applications (SPA) faster
Making Single Page Applications (SPA) faster Boris Livshutz
 
Single Page Applications on JavaScript and ASP.NET MVC4
Single Page Applications on JavaScript and ASP.NET MVC4Single Page Applications on JavaScript and ASP.NET MVC4
Single Page Applications on JavaScript and ASP.NET MVC4Yuriy Shapovalov
 
From MEAN to the MERN Stack
From MEAN to the MERN StackFrom MEAN to the MERN Stack
From MEAN to the MERN StackTroy Miles
 
Refactoring to a Single Page Application
Refactoring to a Single Page ApplicationRefactoring to a Single Page Application
Refactoring to a Single Page ApplicationCodemotion
 
Angular.js in XPages
Angular.js in XPagesAngular.js in XPages
Angular.js in XPagesMark Roden
 

Mais procurados (20)

A 20 minute introduction to AngularJS for XPage developers
A 20 minute introduction to AngularJS for XPage developersA 20 minute introduction to AngularJS for XPage developers
A 20 minute introduction to AngularJS for XPage developers
 
JavaScript Performance (at SFJS)
JavaScript Performance (at SFJS)JavaScript Performance (at SFJS)
JavaScript Performance (at SFJS)
 
BP101: A Modernized Workflow w/ Domino/XPages
BP101: A Modernized Workflow w/ Domino/XPagesBP101: A Modernized Workflow w/ Domino/XPages
BP101: A Modernized Workflow w/ Domino/XPages
 
Server rendering-talk
Server rendering-talkServer rendering-talk
Server rendering-talk
 
Isomorphic React Applications: Performance And Scalability
Isomorphic React Applications: Performance And ScalabilityIsomorphic React Applications: Performance And Scalability
Isomorphic React Applications: Performance And Scalability
 
Develop a vanilla.js spa you and your customers will love
Develop a vanilla.js spa you and your customers will loveDevelop a vanilla.js spa you and your customers will love
Develop a vanilla.js spa you and your customers will love
 
Beginning MEAN Stack
Beginning MEAN StackBeginning MEAN Stack
Beginning MEAN Stack
 
MEAN Stack
MEAN StackMEAN Stack
MEAN Stack
 
What is Mean Stack Development ?
What is Mean Stack Development ?What is Mean Stack Development ?
What is Mean Stack Development ?
 
JavaScript front end performance optimizations
JavaScript front end performance optimizationsJavaScript front end performance optimizations
JavaScript front end performance optimizations
 
Testing your Single Page Application
Testing your Single Page ApplicationTesting your Single Page Application
Testing your Single Page Application
 
The MEAN stack - SoCalCodeCamp - june 29th 2014
The MEAN stack - SoCalCodeCamp - june 29th 2014The MEAN stack - SoCalCodeCamp - june 29th 2014
The MEAN stack - SoCalCodeCamp - june 29th 2014
 
The future of web development write once, run everywhere with angular js an...
The future of web development   write once, run everywhere with angular js an...The future of web development   write once, run everywhere with angular js an...
The future of web development write once, run everywhere with angular js an...
 
Making Single Page Applications (SPA) faster
Making Single Page Applications (SPA) faster Making Single Page Applications (SPA) faster
Making Single Page Applications (SPA) faster
 
Angular 2 vs React
Angular 2 vs ReactAngular 2 vs React
Angular 2 vs React
 
Single Page Applications on JavaScript and ASP.NET MVC4
Single Page Applications on JavaScript and ASP.NET MVC4Single Page Applications on JavaScript and ASP.NET MVC4
Single Page Applications on JavaScript and ASP.NET MVC4
 
From MEAN to the MERN Stack
From MEAN to the MERN StackFrom MEAN to the MERN Stack
From MEAN to the MERN Stack
 
Refactoring to a Single Page Application
Refactoring to a Single Page ApplicationRefactoring to a Single Page Application
Refactoring to a Single Page Application
 
Angular.js in XPages
Angular.js in XPagesAngular.js in XPages
Angular.js in XPages
 
Booting up with polymer
Booting up with polymerBooting up with polymer
Booting up with polymer
 

Semelhante a Server and Client Rendering of Single Page Apps

The future of web development write once, run everywhere with angular.js and ...
The future of web development write once, run everywhere with angular.js and ...The future of web development write once, run everywhere with angular.js and ...
The future of web development write once, run everywhere with angular.js and ...Mark Roden
 
Angular jS Introduction by Google
Angular jS Introduction by GoogleAngular jS Introduction by Google
Angular jS Introduction by GoogleASG
 
Reactive application using meteor
Reactive application using meteorReactive application using meteor
Reactive application using meteorSapna Upreti
 
Google app-engine-cloudcamplagos2011
Google app-engine-cloudcamplagos2011Google app-engine-cloudcamplagos2011
Google app-engine-cloudcamplagos2011Opevel
 
Single Page Applications: Your Browser is the OS!
Single Page Applications: Your Browser is the OS!Single Page Applications: Your Browser is the OS!
Single Page Applications: Your Browser is the OS!Jeremy Likness
 
Mobile and IBM Worklight Best Practices
Mobile and IBM Worklight Best PracticesMobile and IBM Worklight Best Practices
Mobile and IBM Worklight Best PracticesAndrew Ferrier
 
Ember App Kit & The Ember Resolver
Ember App Kit & The Ember ResolverEmber App Kit & The Ember Resolver
Ember App Kit & The Ember Resolvertboyt
 
EmberJS BucharestJS
EmberJS BucharestJSEmberJS BucharestJS
EmberJS BucharestJSRemus Rusanu
 
Build Modern Web Apps Using ASP.NET Web API and AngularJS
Build Modern Web Apps Using ASP.NET Web API and AngularJSBuild Modern Web Apps Using ASP.NET Web API and AngularJS
Build Modern Web Apps Using ASP.NET Web API and AngularJSTaiseer Joudeh
 
How and why we evolved a legacy Java web application to Scala... and we are s...
How and why we evolved a legacy Java web application to Scala... and we are s...How and why we evolved a legacy Java web application to Scala... and we are s...
How and why we evolved a legacy Java web application to Scala... and we are s...Katia Aresti
 
Tech io spa_angularjs_20130814_v0.9.5
Tech io spa_angularjs_20130814_v0.9.5Tech io spa_angularjs_20130814_v0.9.5
Tech io spa_angularjs_20130814_v0.9.5Ganesh Kondal
 
Good bye Massive View Controller!
Good bye Massive View Controller!Good bye Massive View Controller!
Good bye Massive View Controller!Supercharge
 
What's New in .Net 4.5
What's New in .Net 4.5What's New in .Net 4.5
What's New in .Net 4.5Malam Team
 
(ATS6-DEV02) Web Application Strategies
(ATS6-DEV02) Web Application Strategies(ATS6-DEV02) Web Application Strategies
(ATS6-DEV02) Web Application StrategiesBIOVIA
 
Introduction to web application development with Vue (for absolute beginners)...
Introduction to web application development with Vue (for absolute beginners)...Introduction to web application development with Vue (for absolute beginners)...
Introduction to web application development with Vue (for absolute beginners)...Lucas Jellema
 
JDD2015: Java Everywhere Again—with DukeScript - Jaroslav Tulach
JDD2015: Java Everywhere Again—with DukeScript - Jaroslav TulachJDD2015: Java Everywhere Again—with DukeScript - Jaroslav Tulach
JDD2015: Java Everywhere Again—with DukeScript - Jaroslav TulachPROIDEA
 
Building SharePoint Single Page Applications Using AngularJS
Building SharePoint Single Page Applications Using AngularJSBuilding SharePoint Single Page Applications Using AngularJS
Building SharePoint Single Page Applications Using AngularJSSharePointInstitute
 

Semelhante a Server and Client Rendering of Single Page Apps (20)

The future of web development write once, run everywhere with angular.js and ...
The future of web development write once, run everywhere with angular.js and ...The future of web development write once, run everywhere with angular.js and ...
The future of web development write once, run everywhere with angular.js and ...
 
JavaScript MVC Frameworks: Backbone, Ember and Angular JS
JavaScript MVC Frameworks: Backbone, Ember and Angular JSJavaScript MVC Frameworks: Backbone, Ember and Angular JS
JavaScript MVC Frameworks: Backbone, Ember and Angular JS
 
Angular jS Introduction by Google
Angular jS Introduction by GoogleAngular jS Introduction by Google
Angular jS Introduction by Google
 
Reactive application using meteor
Reactive application using meteorReactive application using meteor
Reactive application using meteor
 
Google app-engine-cloudcamplagos2011
Google app-engine-cloudcamplagos2011Google app-engine-cloudcamplagos2011
Google app-engine-cloudcamplagos2011
 
Google App Engine
Google App EngineGoogle App Engine
Google App Engine
 
Single Page Applications: Your Browser is the OS!
Single Page Applications: Your Browser is the OS!Single Page Applications: Your Browser is the OS!
Single Page Applications: Your Browser is the OS!
 
Mobile and IBM Worklight Best Practices
Mobile and IBM Worklight Best PracticesMobile and IBM Worklight Best Practices
Mobile and IBM Worklight Best Practices
 
Ember App Kit & The Ember Resolver
Ember App Kit & The Ember ResolverEmber App Kit & The Ember Resolver
Ember App Kit & The Ember Resolver
 
EmberJS BucharestJS
EmberJS BucharestJSEmberJS BucharestJS
EmberJS BucharestJS
 
Build Modern Web Apps Using ASP.NET Web API and AngularJS
Build Modern Web Apps Using ASP.NET Web API and AngularJSBuild Modern Web Apps Using ASP.NET Web API and AngularJS
Build Modern Web Apps Using ASP.NET Web API and AngularJS
 
How and why we evolved a legacy Java web application to Scala... and we are s...
How and why we evolved a legacy Java web application to Scala... and we are s...How and why we evolved a legacy Java web application to Scala... and we are s...
How and why we evolved a legacy Java web application to Scala... and we are s...
 
Tech io spa_angularjs_20130814_v0.9.5
Tech io spa_angularjs_20130814_v0.9.5Tech io spa_angularjs_20130814_v0.9.5
Tech io spa_angularjs_20130814_v0.9.5
 
Good bye Massive View Controller!
Good bye Massive View Controller!Good bye Massive View Controller!
Good bye Massive View Controller!
 
What's New in .Net 4.5
What's New in .Net 4.5What's New in .Net 4.5
What's New in .Net 4.5
 
(ATS6-DEV02) Web Application Strategies
(ATS6-DEV02) Web Application Strategies(ATS6-DEV02) Web Application Strategies
(ATS6-DEV02) Web Application Strategies
 
Introduction to web application development with Vue (for absolute beginners)...
Introduction to web application development with Vue (for absolute beginners)...Introduction to web application development with Vue (for absolute beginners)...
Introduction to web application development with Vue (for absolute beginners)...
 
Remix
RemixRemix
Remix
 
JDD2015: Java Everywhere Again—with DukeScript - Jaroslav Tulach
JDD2015: Java Everywhere Again—with DukeScript - Jaroslav TulachJDD2015: Java Everywhere Again—with DukeScript - Jaroslav Tulach
JDD2015: Java Everywhere Again—with DukeScript - Jaroslav Tulach
 
Building SharePoint Single Page Applications Using AngularJS
Building SharePoint Single Page Applications Using AngularJSBuilding SharePoint Single Page Applications Using AngularJS
Building SharePoint Single Page Applications Using AngularJS
 

Último

Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionDilum Bandara
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyAlfredo García Lavilla
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Scott Keck-Warren
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity PlanDatabarracks
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):comworks
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteDianaGray10
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brandgvaughan
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenHervé Boutemy
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsMark Billinghurst
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Mark Simos
 
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostLeverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostZilliz
 
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo DayH2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo DaySri Ambati
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupFlorian Wilhelm
 
Search Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfSearch Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfRankYa
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLScyllaDB
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024Stephanie Beckett
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .Alan Dix
 

Último (20)

DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An Introduction
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easy
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity Plan
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test Suite
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brand
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache Maven
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR Systems
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
 
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostLeverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
 
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo DayH2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project Setup
 
Search Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfSearch Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdf
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQL
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .
 

Server and Client Rendering of Single Page Apps

  • 1. WISH LIST server and client rendering of single page apps Thomas Heymann @thomasheymann github.com/cyberthom
  • 3. WISH LIST •  Shopping tool •  Track products •  Receive alerts •  Share lists
  • 4. GOALS & OBJECTIVES •  Improve UI •  Pull out wish list into separate stack of services •  Update front-end code using modern frameworks and best practices –  Perfect candidate for SPA due to mutability •  Minify duplication which led to inconsistencies
  • 5. SHARED CONCERNS Server Client USER INTERACTIONS LOGGING MONITORING ROUTING PRESENTATION LOGIC APPLICATION DATA views / layout / templates models / collections / business rules / API calls events / animations SITE FURNITURE ANALYTICS i18n translations / date and currency formatting STYLING
  • 6. •  Developers get DRY and MV* •  Users get best of both worlds: –  fully rendered pages (instant content) –  responsiveness of SPA •  Business gets SEO •  Everybody’s happy 🌈😃🎉 ENVIRONMENT AGNOSTIC
  • 7. •  EvenThoughtWorks agrees 👌 TECH RADAR http://www.thoughtworks.com/radar/#/techniques Client and server rendering with same code Increasingly, HTML is rendered not only on the server but also on the client, in the web browser. In many cases this split rendering will remain a necessity but with the growing maturity of JavaScript templating libraries an interesting approach has become viable: client and server rendering with same code. HOLD ASSESS TRIAL ADOPT
  • 9. SYSTEMS OVERVIEW WISHLIST API SITE FURNITURE Aggregation Layer Presentation Layer API MAGAZINE API CATALOGUE Core Services & Storage
  • 10. TECH STACK SERVER CLIENT node.js IE8+ Express Backbone Router cheerio jQuery Backbone Handlebars require.js App
  • 11. •  Renders nested views •  Re-attaches views to DOM client-side APP COMPONENTS VIEW ASSEMBLER ROUTER MODEL FACTORY SERIALIZER SYNCER •  Ignores duplicate requests and caches responses •  Injects headers •  Matches URLs and extracts params •  Executes controller logic •  Serializes app data to JSON server-side •  Deserializes app data client-side •  Creates models •  Enforces singletons for data bindings
  • 12. PAGE REQUEST 1.  Instantiate app 2.  Dispatch route (run controller logic) 3.  Render views 4.  Serialize data (models/collections) 5.  Decorate page with site furniture 6.  Send response SERVER WORKFLOW
  • 13. PAGE LOAD 1.  Instantiate app 2.  Deserialize data (models/collections) 3.  Setup Backbone routes 4.  Dispatch route (run controller logic) 5.  Re-attach views PAGE NAVIGATION 1.  Dispatch route (run controller logic) 2.  Render views CLIENT WORKFLOW
  • 15. module.exports = function(options) {! var options = options || {},! App = options.app,! route = options.route;! ! return function(req, res, next) {! var app = new App({! language: req.params.language,! authToken: req.cookies.sessionid! });! ! app! .dispatch(route, req.params)! .done(function(view) {! var html = view.render().outerHTML(),! bootstrap = JSON.stringify(app.serialize());! res.send(html + '<script>' + bootstrap + '</script>');! })! .fail(next);! };! };! SERVE APP MIDDLEWARE
  • 16. WISH LIST CONTROLLER route('/wishlist/:id', 'wishlist', function(id) {! var app = this, api = app.wishlistApi;! ! var allWishlists = api.getAllWishlists(),! wishlist = api.getWishlist(id),! allWishlistItems = api.getAllWishlistItems(id);! ! var productList = new ProductListView({! collection: allWishlistItems! }),! navigation = new NavigationView({! model: wishlist,! collection: allWishlists! });! mainView = new MainView({! model: wishlist,! views: {! 'append header': navigation,! 'inner [role=main]': productList! }! });! ! return mainView.ready().then(function() {! return mainView;! });! });!
  • 17. MAIN TEMPLATE <header>! <h1>{{name}}</h1>! ! {{#if isOwner}}! <button>Manage</button>! {{/if}}! ! {{! Navigation }}! </header>! ! <div role="main">{{! Product List }}</div>!
  • 18. CLIENT-SIDE BOOTSTRAPPING <header>! <h1>Wish List</h1> <button>Manage</button>! <ul class="navigation">! <li>...</li>! </ul>! </header>! <div role="main">! <ul class=“product-list">! <li>...</li>! </ul>! </div>! ! <script>! var app = new App();! ! app.deserialize({bootstrap});! ! route('/wishlist/:id', 'wishlist', function(id) {! app! .dispatch(route, id)! .done(function(view) {! view.attach('.container');! });! });! Backbone.history.start();! </script>!
  • 21. •  Lots of code bridging differences between environments and libraries –  Introducing extra abstraction layer •  Routing is different –  Stateless server-side routing (new app instance for each request) –  Stateful client-side routing (holding on to app during page navigation) –  Express vs. Backbone routes (reversed order, paths, params) –  Redirects (302 vs. browser location) –  Serve mobile page based on user agent •  Fetching data is different (XMLHttpRequest vs. node request) COMPLEX PROBLEM
  • 22. •  Caching is different –  Only ever fetch once per incoming request –  Tab could be left open for days –  Expire and re-fetch resources after x seconds client-side •  Error handling is different (HTTP error codes vs. popups) •  Sending email is borderline COMPLEX PROBLEM
  • 23. •  Dependency management –  CommonJS runs client-side with browserify –  AMD runs server-side with require.js –  Both work but ideally language level support (ES6 Modules) •  Promises –  Q or jQuery Deferred –  Ideally one standard (ES6 Promises) ES5 IMMATURITY
  • 24. •  Well known jQuery API for DOM manipulation and traversal •  Easy to pick up •  Can translate Backbone apps directly to the server •  No full blown JSDOM, but still slow CHEERIO
  • 25. •  Airbnb Rendr –  One stop solution (Rendering, Serialization, Routing) –  Pure string concatenation using templates – Fast on the server –  Client-side rendering trashes and re-renders whole DOM (can cause flicker and performance issues) •  Facebook React –  View rendering library (Bring your own MC) –  Virtual DOM approach: slow on the server but super fast client-side –  Fun fact: Inspired by DOOM III CHEERIO ALTERNATIVES
  • 26. Rendering comment box with 1000 comments SERVER-SIDE PERFORMANCE •  Very simple HTML – String concatenation will shine even more as markup grows in complexity •  React has the edge over Cheerio – JSX uses precompiled objects so can be heavily optimized byV8 (Cheerio parses strings into trees on runtime) RENDR REACT CHEERIO ~ 110 ms ~ 174 ms ~ 204 ms
  • 27. •  Load performance means time to content (not response time) –  Server-side DOM is slow but faster than serving empty pages •  Think of it as an enhancement to SPA –  Stateless service can be easily scaled up –  Respond with empty pages if load is too high and render client-side •  Client-side rendering performance equally important •  Decide per use case – In certain situations simple Express.js templating with separate client-side JS might be better approach SO WHAT?
  • 28. •  YES! 🌟😺✨ •  Joy to develop once hard work is done •  Easy and fast to build rich UI and add new functionality •  But: •  Technique in its infants •  Better frameworks/solutions required WORTH IT?