(Go: >> BACK << -|- >> HOME <<)

SlideShare a Scribd company logo
{ dust.js } at LinkedIn



     Yevgeniy Brikman
2011: LinkedIn adopted dust.js, a
 client side templating language
This is the story of client side
templating at massive scale
Dust in the wild




                   Profile 2.0
Dust in the wild




             People You May Know
Dust in the wild




                   Influencers
About me




                Presentation Infrastructure Team
   (also Hackdays, [in]cubator, Engineering Blog, Open Source)
Outline

1. A little LinkedIn history
2. A new direction: client side rendering
3. Picking a templating technology
4. Take dust for a spin
5. Challenges: SEO, i18n, logic
6. The Future
Outline

1. A little LinkedIn history
2. A new direction: client side rendering
3. Picking a templating technology
4. Take dust for a spin
5. Challenges: SEO, i18n, logic
6. The Future
LinkedIn in 2003




 A single, monolithic webapp: servlets/JSPs
LinkedIn in 2010




 New web frameworks to boost productivity:
  Grails/GSPs, JRuby/ERBs, plus others
Fragmentation

● Each tech stack used a different templating
  technology (JSP, GSP, ERB, etc)

● No easy way to share UI code for common
  components (e.g. profile, the feed)

● The "global" nav had to be rewritten in
  multiple languages/technologies. Updating it
  was very time consuming.
We needed to unify the view layer
Outline

1. A little LinkedIn history
2. A new direction: client side rendering
3. Picking a templating technology
4. Take dust for a spin
5. Challenges: SEO, i18n, logic
6. The Future
We began looking at client side
    templating solutions
Traditional server side rendering




    All page content is rendered as HTML and sent to the browser
Client side rendering (simplified)




   Server sends JSON. The template is fetched from the CDN and
                      rendered in browser.
Client side rendering (full)




   Server sends JSON embedded in an HTML skeleton. The skeleton
      has JavaScript code that fetches and renders the template.
Client side MVC




   Client side MVC makes client side rendering even more important.
Client side rendering (with MVC)




   Once a page has loaded, the client side MVC takes over, fetching
   JSON from the server and rendering it with client side templates
Client side rendering benefits

● DRY: works with any server side stack plus
  client side

● Performance: bandwidth, latency, caching

● Productivity: fast iteration, mock JSON

● Rich apps: client side MVC
Outline

1. A little LinkedIn history
2. A new direction: client side rendering
3. Picking a templating technology
4. Take dust for a spin
5. Challenges: SEO, i18n, logic
6. The Future
Decisions, decisions




   We evaluated 26 different options. They tended to fall into one of
        two groups: Embedded JavaScript and Logic Less.
Embedded JavaScript Templates


 <ul>
   <% for(var i = 0; i < supplies.length; i ++) { %>
      <li><%= supplies[i] %> </li>
   <% } %>
 </ul>




            Normal JavaScript code directly in the template.
Embedded JavaScript Templates
●   underscore.js
●   Jade
●   haml-js
●   jQote2
●   doT
●   Stencil
●   Parrot
●   Eco
●   EJS
●   jQuery templates
●   node-asyncEJS
Logic-less Templates



 <p>
   Hello {name}! You have {count} new messages.
 </p>




              Custom template language that limits logic
Embedded JavaScript Templates
●   mustache
●   dust.js
●   handlebars
●   Google Closure Templates
●   Nun
●   Mu
●   kite
The test




           Render a simplified LinkedIn profile
The rules

● Produce this HTML output

● Use this profile JSON as input

● The same template should render on the server-side
  and client-side

● Properly handle profile data display rules

● Format numbers and dates correctly
The criteria
●   DRY
●   i18n
●   Hot reload
●   Performance
●   Ramp-up time
●   Ramped-up productivity
●   Server/client support
●   Community
●   Library agnostic
●   Testable
●   Debuggable
●   Editor support
●   Maturity
●   Documentation
●   Code documentation
Criteria are just guidelines;
not all are weighted equally.
The finalists
Google Closure Templates
Pros
 ● Templates are compiled into JavaScript for client-side and Java for server-
    side.
 ● Good built-in functionality: loops, conditionals, partials, i18n.
 ● Documentation is enforced by the template.

Cons
 ● Very little usage outside of Google. No plans to push new versions or
   accept new contributions.
 ● Some functionality is missing, such as being able to loop over maps.
 ● Not DRY: adding new functionality requires implementing plugins in both
   Java and JavaScript.
Mustache
Pros
 ● Very popular choice with a large, active community.
 ● Server side support in many languages, including Java.
 ● Logic-less templates do a great job of forcing you to separate presentation
    from logic.
 ● Clean syntax leads to templates that are easy to build, read, and maintain.

Cons
 ● A little too logic-less: basic tasks (e.g. label alternate rows with different
   CSS classes) are difficult.
 ● View logic is often pushed back to the server or implemented as a
   "lambda" (callable function).
 ● For lambdas to work on client and server, you must write them in
   JavaScript.
 ● Slow, interpreted templates
Handlebars
Pros
 ● Logic-less templates do a great job of forcing you to separate presentation
    from logic.
 ● Clean syntax leads to templates that are easy to build, read, and maintain.
 ● Compiled rather than interpreted templates.
 ● Better support for paths than mustache (ie, reaching deep into a context
    object).
 ● Better support for global helpers than mustache.

Cons
 ● Requires server-side JavaScript to render on the server.
Dust.js
Pros
 ● Logic-less templates do a great job of forcing you to separate presentation
    from logic.
 ● Clean syntax leads to templates that are easy to build, read, and maintain.
 ● Compiled rather than interpreted templates.
 ● Better support for paths than mustache (ie, reaching deep into a context
    object).
 ● Better support for global helpers than mustache.
 ● Inline parameters.
 ● Blocks & inline partials.
 ● Overriding contexts.
 ● Support for asynchronous rendering and streaming.
 ● Composable templates.

Cons
 ● Requires server-side JavaScript to render on the server.
 ● Maintainer of github repo is not responsive.
Spoiler alert!
dust.js won
Takeaways
● Based on how we weighed our criteria, Dust
  fit our needs the best

● Use real use cases and identify the most
  important criteria to you

● For non-trivial views, no templating option
  works on client and server, unless your
  server executes JavaScript (v8, Rhino)
Outline

1. A little LinkedIn history
2. A new direction: client side rendering
3. Picking a templating technology
4. Take dust for a spin
5. Challenges: SEO, i18n, logic
6. The Future
The LinkedIn Fork

● The original maintainer abandoned dust

● The LinkedIn fork is now the most active

● We've added bug fixes, perf improvements,
  and helpers
Try it out

● Homepage:
  http://linkedin.github.com/dustjs/

● Try it in the browser: http://linkedin.github.
  com/dustjs/test/test.html

● Source code: https://github.
  com/linkedin/dustjs
(demo)
Outline

1. A little LinkedIn history
2. A new direction: client side rendering
3. Picking a templating technology
4. Take dust for a spin
5. Challenges: SEO, i18n, logic
6. The Future
How do you handle view logic?
Yes, there is such a thing as view logic
 and it's separate from business logic
Complicated
Logic      logic




Logic
Homework assignment: implement
  this view with a truly logic-less
 template (no helpers/lambdas!)
Helpers to the rescue: @eq, @ne


 {@eq key="foo" value="foo"}The key and value are equal!{/ eq}
 {@ne key="foo" value="bar"}The key and value are not equal!{/ ne}
Helpers to the rescue: @gt, @lt


  {@gt key="22" value="3"}22 is greater than 3{/ gt}
  {@lt key="0" value="500"}0 is less than 500{/ lt}
Helpers to the rescue: @select


 {@select key=age}
   {@eq value="1"}Baby{/eq}
   {@lt value="10"}Child{/lt}
   {@lt value="18"}Teen{/lt}
   {@default}Adult{/default}
 {/select}
Helpers to the rescue: @size, @math



 You have {@ size key=list/} new messages
 {@math key="16" method="add" operand="4"/}
Full library of helpers is available at:
https://github.com/linkedin/dustjs-helpers
How do we handled clients without
 JavaScript? What about SEO?
SSR: Server Side Rendering
● Google V8 engine

● A plugin for Apache Traffic Server

● Executes arbitrary JavaScript server side,
  including rendering dust templates

● Often nicknamed Unified Server Side
  Rendering... aka, USSR
Client side rendering (full, SSR)




   The HTML Skeleton is written in dust. SSR renders it as HTML.
SSR uses
● Render dust skeleton into HTML skeleton

● Render everything server side for:
  ○ Crawlers/bots/search engines
  ○ Clients without JavaScript
  ○ Slow clients (IE < 8)

● Logic less templates help ensure that
  everything renders correctly server-side. No
  DOM dependencies!
What about i18n? Formatting? URLs?
Server side templates



 <p>
   <a href="${url.link( 'home-page' }">$!{i18n('hello-world' )}</a>
 </p>




    In JSPs, Java libraries did i18n, text formatting, URL generation
Sending an entire i18n dictionary,
URL dictionary, and all formatting
code to the browser is expensive
Option #1: everything server side
Java controller


     json.put("name", "Jim");
     json.put("home-page-link" , Url.link("home-page" ));
     json.put("hello-world-text" , I18n.get("hello-world" ));
     render("profile-page" , json);



profile-page dust template



     <p>
       <a href="{home-page-link} ">{hello-world-text} </a>
     </p>




          All i18n, text formatting, and URL generation is done server side
                            and added to the JSON payload
Option #1: everything server side

Pros
● Simple, easy to understand
● Clean templates

Cons
● Controller code cluttered with view logic
Option #2: dynamic pre-processing
Original profile-page dust template


     <p>
       <a href="{@pre.link key="home-page"}
                                          ">{@pre.i18n key="hello-world"}
                                                                        </a>
     </p>




Pre-processed profile-page dust template


     <p>
       <a href="{link-123}">{i18n-456}</a>
     </p>




        Step 1: the @pre helper tags get replaced at build time with
        references to unique keys in the JSON
Option #2: dynamic pre-processing
Java controller



     json.put("name", "Jim");
     render("profile-page" , json);




Pre-processed JSON


     {
         "name": "Jim",
         "link-123" : "http://www.linkedin.com" ,
         "i18n-456" : "Hello World"
     }



         Step 2: whenever profile-page is rendered, automatically
         "enhance" the JSON with the requested i18n and URL values
Option #2: dynamic pre-processing

Pros
● All view logic is in the templates
● Clean server side code

Cons
● Complicated, hard to debug
● Tight coupling: need special server and build
  logic to use templates
● Performance: increased JSON payload
  and/or more server processing time
Option #3: static pre-processing
Original profile-page dust template


     <p>
       <a href="{home-page-link}">{@i18n}Hello World{/i18n}</a>
     </p>




Pre-processed profile-page dust template (one per language)
     <p>
       <a href="{home-page-link}">Hello World</a>
     </p>


     <p>
       <a href="{home-page-link}">Bonjour monde</a>
     </p>



          Generate one template per language with translated text already
          filled in. Link generation and formatting still happen server-side.
Option #3: static pre-processing

Pros
● Hybrid approach: i18n is in the templates,
  only formatting/link generation is in controller
● Simpler, easier to debug than dynamic pre-
  processing

Cons
● Custom build process
● Increased template payload, but i18n strings
  now cached with template
Outline

1. A little LinkedIn history
2. A new direction: client side rendering
3. Picking a templating technology
4. Take dust for a spin
5. Challenges: SEO, i18n, logic
6. The Future
LinkedIn in 2013




 We now many services using client side rendering and
         many using server-side rendering
A full rewrite is too expensive
Fizzy: Composable UI
Fizzy




 Fizzy is an ATS plugin that reads the HTML (skeleton or
                full) returned by webapps
Fizzy


 <html>
   <body>
     <h1>Composable UI </h1>
     <script type="fs/embed" fs-uri="/news-feed/top" ></script>
     <script type="fs/embed" fs-uri="/pymk"></script>
     <script type="fs/embed" fs-uri="/ad"></script>
   </body>
 </html>




   If Fizzy finds an fs/embed in the HTML, it calls the URI and injects
                        the response into the page.
Fizzy

                    HTML skeleton



                                    Embed


                        Embed

                                    Embed




A page now consists of a skeleton with a bunch of Fizzy-
                 processed embeds.
Deferred rendering
Typical page
               HTML Skeleton


                                     Dust
                                   template
                 Dust template


                                     Dust
                                   template



                 Dust template       Dust
                                   template




                        Dust template
Typical page
                        HTML Skeleton


                                              Dust
                                            template
                          Dust template


                                              Dust
          The fold                          template



                          Dust template       Dust
                                            template




                                 Dust template




   On initial page load, the user doesn't see anything below the fold
Typical page
                       HTML Skeleton


                                             Dust
                                           template
                         Dust template


                                             Dust
            The fold                       template



                         Dust template       Dust
                                           template



No need
to render                       Dust template

                                                      No need to fetch
                                                       data or render
Deferred rendering

● Dramatically improve performance by not
  rendering anything below the fold

● Improve it even further by not fetching the
  data for things far out of view

● The challenge: the fold is at different
  positions on different devices
Outline

1. A little LinkedIn history
2. A new direction: client side rendering
3. Picking a templating technology
4. Take dust for a spin
5. Challenges: SEO, i18n, logic
6. The Future
Final thoughts

● Dust.js has improved developer productivity and code
  sharing at LinkedIn

● Client side templating offers powerful new capabilities
  and benefits

● It also introduces tough new challenges

● It's an evolving technology; now is a good time to get
  involved
Questions?

More Related Content

What's hot

Report on car racing game for android
Report on car racing game for androidReport on car racing game for android
Report on car racing game for android
ravijot singh
 
Web development
Web developmentWeb development
Web development
RaziyaChoudhary
 
Core Web Vitals: Google New Ranking Factor
Core Web Vitals: Google New Ranking FactorCore Web Vitals: Google New Ranking Factor
Core Web Vitals: Google New Ranking Factor
EneblurConsultingweb
 
React js basics
React js basicsReact js basics
React js basics
Maulik Shah
 
Progressive Web App
Progressive Web AppProgressive Web App
Progressive Web App
SaleemMalik52
 
Hybrid application development
Hybrid application developmentHybrid application development
Hybrid application development
Knoldus Inc.
 
LAMP TECHNOLOGY
LAMP TECHNOLOGYLAMP TECHNOLOGY
LAMP TECHNOLOGY
kurushetra Nikel
 
Node js overview
Node js overviewNode js overview
Node js overview
Eyal Vardi
 
Restaurant app presentation
Restaurant app presentationRestaurant app presentation
Restaurant app presentation
Certified Marketing Pros
 
The Benefits of Using React JS for Web Development!
The Benefits of Using React JS for Web Development!The Benefits of Using React JS for Web Development!
The Benefits of Using React JS for Web Development!
Baharika Sopori
 
Electron - Build cross platform desktop apps
Electron - Build cross platform desktop appsElectron - Build cross platform desktop apps
Electron - Build cross platform desktop apps
Priyaranjan Mohanty
 
Complete MVC on NodeJS
Complete MVC on NodeJSComplete MVC on NodeJS
Complete MVC on NodeJS
Hüseyin BABAL
 
Web Application Technical & Financial Proposal
Web Application Technical & Financial ProposalWeb Application Technical & Financial Proposal
Web Application Technical & Financial Proposal
Md.Abu Taher (Rujel)
 
Presentation 5 (1).pptx
Presentation 5 (1).pptxPresentation 5 (1).pptx
Presentation 5 (1).pptx
NehaSingh348136
 
How to Use Your Product Roadmap as a Communication Tool
How to Use Your Product Roadmap as a Communication ToolHow to Use Your Product Roadmap as a Communication Tool
How to Use Your Product Roadmap as a Communication Tool
Janna Bastow
 
Introduction to ReactJS
Introduction to ReactJSIntroduction to ReactJS
Introduction to ReactJS
Hoang Long
 
How To be a Backend developer
How To be a Backend developer    How To be a Backend developer
How To be a Backend developer
Ramy Hakam
 
MIND GAME ZONE - Abhijeet
MIND GAME ZONE - AbhijeetMIND GAME ZONE - Abhijeet
MIND GAME ZONE - Abhijeet
Abhijeet Kalsi
 
Web Development Workshop (Front End)
Web Development Workshop (Front End)Web Development Workshop (Front End)
Web Development Workshop (Front End)
DSCIIITLucknow
 
Introduction to Web Development Career
Introduction to Web Development CareerIntroduction to Web Development Career
Introduction to Web Development Career
Eunus Hosen
 

What's hot (20)

Report on car racing game for android
Report on car racing game for androidReport on car racing game for android
Report on car racing game for android
 
Web development
Web developmentWeb development
Web development
 
Core Web Vitals: Google New Ranking Factor
Core Web Vitals: Google New Ranking FactorCore Web Vitals: Google New Ranking Factor
Core Web Vitals: Google New Ranking Factor
 
React js basics
React js basicsReact js basics
React js basics
 
Progressive Web App
Progressive Web AppProgressive Web App
Progressive Web App
 
Hybrid application development
Hybrid application developmentHybrid application development
Hybrid application development
 
LAMP TECHNOLOGY
LAMP TECHNOLOGYLAMP TECHNOLOGY
LAMP TECHNOLOGY
 
Node js overview
Node js overviewNode js overview
Node js overview
 
Restaurant app presentation
Restaurant app presentationRestaurant app presentation
Restaurant app presentation
 
The Benefits of Using React JS for Web Development!
The Benefits of Using React JS for Web Development!The Benefits of Using React JS for Web Development!
The Benefits of Using React JS for Web Development!
 
Electron - Build cross platform desktop apps
Electron - Build cross platform desktop appsElectron - Build cross platform desktop apps
Electron - Build cross platform desktop apps
 
Complete MVC on NodeJS
Complete MVC on NodeJSComplete MVC on NodeJS
Complete MVC on NodeJS
 
Web Application Technical & Financial Proposal
Web Application Technical & Financial ProposalWeb Application Technical & Financial Proposal
Web Application Technical & Financial Proposal
 
Presentation 5 (1).pptx
Presentation 5 (1).pptxPresentation 5 (1).pptx
Presentation 5 (1).pptx
 
How to Use Your Product Roadmap as a Communication Tool
How to Use Your Product Roadmap as a Communication ToolHow to Use Your Product Roadmap as a Communication Tool
How to Use Your Product Roadmap as a Communication Tool
 
Introduction to ReactJS
Introduction to ReactJSIntroduction to ReactJS
Introduction to ReactJS
 
How To be a Backend developer
How To be a Backend developer    How To be a Backend developer
How To be a Backend developer
 
MIND GAME ZONE - Abhijeet
MIND GAME ZONE - AbhijeetMIND GAME ZONE - Abhijeet
MIND GAME ZONE - Abhijeet
 
Web Development Workshop (Front End)
Web Development Workshop (Front End)Web Development Workshop (Front End)
Web Development Workshop (Front End)
 
Introduction to Web Development Career
Introduction to Web Development CareerIntroduction to Web Development Career
Introduction to Web Development Career
 

Similar to Dust.js

JSFest 2019: Technology agnostic microservices at SPA frontend
JSFest 2019: Technology agnostic microservices at SPA frontendJSFest 2019: Technology agnostic microservices at SPA frontend
JSFest 2019: Technology agnostic microservices at SPA frontend
Vlad Fedosov
 
JS Fest 2019/Autumn. Влад Федосов. Technology agnostic microservices at SPA f...
JS Fest 2019/Autumn. Влад Федосов. Technology agnostic microservices at SPA f...JS Fest 2019/Autumn. Влад Федосов. Technology agnostic microservices at SPA f...
JS Fest 2019/Autumn. Влад Федосов. Technology agnostic microservices at SPA f...
JSFestUA
 
AngularJS in Production (CTO Forum)
AngularJS in Production (CTO Forum)AngularJS in Production (CTO Forum)
AngularJS in Production (CTO Forum)
Alex Ross
 
Angular (v2 and up) - Morning to understand - Linagora
Angular (v2 and up) - Morning to understand - LinagoraAngular (v2 and up) - Morning to understand - Linagora
Angular (v2 and up) - Morning to understand - Linagora
LINAGORA
 
Company Visitor Management System Report.docx
Company Visitor Management System Report.docxCompany Visitor Management System Report.docx
Company Visitor Management System Report.docx
fantabulous2024
 
Nodejs
NodejsNodejs
Client vs Server Templating: Speed up initial load for SPA with Angular as an...
Client vs Server Templating: Speed up initial load for SPA with Angular as an...Client vs Server Templating: Speed up initial load for SPA with Angular as an...
Client vs Server Templating: Speed up initial load for SPA with Angular as an...
David Amend
 
What are the basic key points to focus on while learning Full-stack web devel...
What are the basic key points to focus on while learning Full-stack web devel...What are the basic key points to focus on while learning Full-stack web devel...
What are the basic key points to focus on while learning Full-stack web devel...
kzayra69
 
Angular Js
Angular JsAngular Js
Angular Js
Knoldus Inc.
 
Frontend APIs powering fast paced product iterations
Frontend APIs powering fast paced product iterationsFrontend APIs powering fast paced product iterations
Frontend APIs powering fast paced product iterations
Karthik Ramgopal
 
How NOT to get lost in the current JavaScript landscape
How NOT to get lost in the current JavaScript landscapeHow NOT to get lost in the current JavaScript landscape
How NOT to get lost in the current JavaScript landscape
Radosław Scheibinger
 
Developing high performance and responsive web apps using web worker
Developing high performance and responsive web apps using web workerDeveloping high performance and responsive web apps using web worker
Developing high performance and responsive web apps using web worker
Suresh Patidar
 
GWT - Building Rich Internet Applications Using OO Tools
GWT - Building Rich Internet Applications Using OO ToolsGWT - Building Rich Internet Applications Using OO Tools
GWT - Building Rich Internet Applications Using OO Tools
barciszewski
 
Introduction to Django Course For Newbie - Advance
Introduction to Django Course For Newbie - AdvanceIntroduction to Django Course For Newbie - Advance
Introduction to Django Course For Newbie - Advance
yusufvabdullah001
 
Web summit.pptx
Web summit.pptxWeb summit.pptx
Web summit.pptx
171SagnikRoy
 
Beginners Node.js
Beginners Node.jsBeginners Node.js
Beginners Node.js
Khaled Mosharraf
 
Advanced web application architecture - Talk
Advanced web application architecture - TalkAdvanced web application architecture - Talk
Advanced web application architecture - Talk
Matthias Noback
 
Viktor Turskyi "Effective NodeJS Application Development"
Viktor Turskyi "Effective NodeJS Application Development"Viktor Turskyi "Effective NodeJS Application Development"
Viktor Turskyi "Effective NodeJS Application Development"
Fwdays
 
RealDay: Angular.js
RealDay: Angular.jsRealDay: Angular.js
RealDay: Angular.js
Miguel Schmitz Grazziotin
 
Angular 2 vs React
Angular 2 vs ReactAngular 2 vs React
Angular 2 vs React
Iran Reyes Fleitas
 

Similar to Dust.js (20)

JSFest 2019: Technology agnostic microservices at SPA frontend
JSFest 2019: Technology agnostic microservices at SPA frontendJSFest 2019: Technology agnostic microservices at SPA frontend
JSFest 2019: Technology agnostic microservices at SPA frontend
 
JS Fest 2019/Autumn. Влад Федосов. Technology agnostic microservices at SPA f...
JS Fest 2019/Autumn. Влад Федосов. Technology agnostic microservices at SPA f...JS Fest 2019/Autumn. Влад Федосов. Technology agnostic microservices at SPA f...
JS Fest 2019/Autumn. Влад Федосов. Technology agnostic microservices at SPA f...
 
AngularJS in Production (CTO Forum)
AngularJS in Production (CTO Forum)AngularJS in Production (CTO Forum)
AngularJS in Production (CTO Forum)
 
Angular (v2 and up) - Morning to understand - Linagora
Angular (v2 and up) - Morning to understand - LinagoraAngular (v2 and up) - Morning to understand - Linagora
Angular (v2 and up) - Morning to understand - Linagora
 
Company Visitor Management System Report.docx
Company Visitor Management System Report.docxCompany Visitor Management System Report.docx
Company Visitor Management System Report.docx
 
Nodejs
NodejsNodejs
Nodejs
 
Client vs Server Templating: Speed up initial load for SPA with Angular as an...
Client vs Server Templating: Speed up initial load for SPA with Angular as an...Client vs Server Templating: Speed up initial load for SPA with Angular as an...
Client vs Server Templating: Speed up initial load for SPA with Angular as an...
 
What are the basic key points to focus on while learning Full-stack web devel...
What are the basic key points to focus on while learning Full-stack web devel...What are the basic key points to focus on while learning Full-stack web devel...
What are the basic key points to focus on while learning Full-stack web devel...
 
Angular Js
Angular JsAngular Js
Angular Js
 
Frontend APIs powering fast paced product iterations
Frontend APIs powering fast paced product iterationsFrontend APIs powering fast paced product iterations
Frontend APIs powering fast paced product iterations
 
How NOT to get lost in the current JavaScript landscape
How NOT to get lost in the current JavaScript landscapeHow NOT to get lost in the current JavaScript landscape
How NOT to get lost in the current JavaScript landscape
 
Developing high performance and responsive web apps using web worker
Developing high performance and responsive web apps using web workerDeveloping high performance and responsive web apps using web worker
Developing high performance and responsive web apps using web worker
 
GWT - Building Rich Internet Applications Using OO Tools
GWT - Building Rich Internet Applications Using OO ToolsGWT - Building Rich Internet Applications Using OO Tools
GWT - Building Rich Internet Applications Using OO Tools
 
Introduction to Django Course For Newbie - Advance
Introduction to Django Course For Newbie - AdvanceIntroduction to Django Course For Newbie - Advance
Introduction to Django Course For Newbie - Advance
 
Web summit.pptx
Web summit.pptxWeb summit.pptx
Web summit.pptx
 
Beginners Node.js
Beginners Node.jsBeginners Node.js
Beginners Node.js
 
Advanced web application architecture - Talk
Advanced web application architecture - TalkAdvanced web application architecture - Talk
Advanced web application architecture - Talk
 
Viktor Turskyi "Effective NodeJS Application Development"
Viktor Turskyi "Effective NodeJS Application Development"Viktor Turskyi "Effective NodeJS Application Development"
Viktor Turskyi "Effective NodeJS Application Development"
 
RealDay: Angular.js
RealDay: Angular.jsRealDay: Angular.js
RealDay: Angular.js
 
Angular 2 vs React
Angular 2 vs ReactAngular 2 vs React
Angular 2 vs React
 

More from Yevgeniy Brikman

Cloud adoption fails - 5 ways deployments go wrong and 5 solutions
Cloud adoption fails - 5 ways deployments go wrong and 5 solutionsCloud adoption fails - 5 ways deployments go wrong and 5 solutions
Cloud adoption fails - 5 ways deployments go wrong and 5 solutions
Yevgeniy Brikman
 
How to test infrastructure code: automated testing for Terraform, Kubernetes,...
How to test infrastructure code: automated testing for Terraform, Kubernetes,...How to test infrastructure code: automated testing for Terraform, Kubernetes,...
How to test infrastructure code: automated testing for Terraform, Kubernetes,...
Yevgeniy Brikman
 
Lessons learned from writing over 300,000 lines of infrastructure code
Lessons learned from writing over 300,000 lines of infrastructure codeLessons learned from writing over 300,000 lines of infrastructure code
Lessons learned from writing over 300,000 lines of infrastructure code
Yevgeniy Brikman
 
Gruntwork Executive Summary
Gruntwork Executive SummaryGruntwork Executive Summary
Gruntwork Executive Summary
Yevgeniy Brikman
 
Reusable, composable, battle-tested Terraform modules
Reusable, composable, battle-tested Terraform modulesReusable, composable, battle-tested Terraform modules
Reusable, composable, battle-tested Terraform modules
Yevgeniy Brikman
 
The Truth About Startups: What I wish someone had told me about entrepreneurs...
The Truth About Startups: What I wish someone had told me about entrepreneurs...The Truth About Startups: What I wish someone had told me about entrepreneurs...
The Truth About Startups: What I wish someone had told me about entrepreneurs...
Yevgeniy Brikman
 
An intro to Docker, Terraform, and Amazon ECS
An intro to Docker, Terraform, and Amazon ECSAn intro to Docker, Terraform, and Amazon ECS
An intro to Docker, Terraform, and Amazon ECS
Yevgeniy Brikman
 
Comprehensive Terraform Training
Comprehensive Terraform TrainingComprehensive Terraform Training
Comprehensive Terraform Training
Yevgeniy Brikman
 
Infrastructure as code: running microservices on AWS using Docker, Terraform,...
Infrastructure as code: running microservices on AWS using Docker, Terraform,...Infrastructure as code: running microservices on AWS using Docker, Terraform,...
Infrastructure as code: running microservices on AWS using Docker, Terraform,...
Yevgeniy Brikman
 
Agility Requires Safety
Agility Requires SafetyAgility Requires Safety
Agility Requires Safety
Yevgeniy Brikman
 
Startup Ideas and Validation
Startup Ideas and ValidationStartup Ideas and Validation
Startup Ideas and Validation
Yevgeniy Brikman
 
A Guide to Hiring for your Startup
A Guide to Hiring for your StartupA Guide to Hiring for your Startup
A Guide to Hiring for your Startup
Yevgeniy Brikman
 
Startup DNA: Speed Wins
Startup DNA: Speed WinsStartup DNA: Speed Wins
Startup DNA: Speed Wins
Yevgeniy Brikman
 
Node.js vs Play Framework (with Japanese subtitles)
Node.js vs Play Framework (with Japanese subtitles)Node.js vs Play Framework (with Japanese subtitles)
Node.js vs Play Framework (with Japanese subtitles)
Yevgeniy Brikman
 
Node.js vs Play Framework
Node.js vs Play FrameworkNode.js vs Play Framework
Node.js vs Play Framework
Yevgeniy Brikman
 
Rapid prototyping
Rapid prototypingRapid prototyping
Rapid prototyping
Yevgeniy Brikman
 
Composable and streamable Play apps
Composable and streamable Play appsComposable and streamable Play apps
Composable and streamable Play apps
Yevgeniy Brikman
 
Play Framework: async I/O with Java and Scala
Play Framework: async I/O with Java and ScalaPlay Framework: async I/O with Java and Scala
Play Framework: async I/O with Java and Scala
Yevgeniy Brikman
 
The Play Framework at LinkedIn
The Play Framework at LinkedInThe Play Framework at LinkedIn
The Play Framework at LinkedIn
Yevgeniy Brikman
 
Kings of Code Hack Battle
Kings of Code Hack BattleKings of Code Hack Battle
Kings of Code Hack Battle
Yevgeniy Brikman
 

More from Yevgeniy Brikman (20)

Cloud adoption fails - 5 ways deployments go wrong and 5 solutions
Cloud adoption fails - 5 ways deployments go wrong and 5 solutionsCloud adoption fails - 5 ways deployments go wrong and 5 solutions
Cloud adoption fails - 5 ways deployments go wrong and 5 solutions
 
How to test infrastructure code: automated testing for Terraform, Kubernetes,...
How to test infrastructure code: automated testing for Terraform, Kubernetes,...How to test infrastructure code: automated testing for Terraform, Kubernetes,...
How to test infrastructure code: automated testing for Terraform, Kubernetes,...
 
Lessons learned from writing over 300,000 lines of infrastructure code
Lessons learned from writing over 300,000 lines of infrastructure codeLessons learned from writing over 300,000 lines of infrastructure code
Lessons learned from writing over 300,000 lines of infrastructure code
 
Gruntwork Executive Summary
Gruntwork Executive SummaryGruntwork Executive Summary
Gruntwork Executive Summary
 
Reusable, composable, battle-tested Terraform modules
Reusable, composable, battle-tested Terraform modulesReusable, composable, battle-tested Terraform modules
Reusable, composable, battle-tested Terraform modules
 
The Truth About Startups: What I wish someone had told me about entrepreneurs...
The Truth About Startups: What I wish someone had told me about entrepreneurs...The Truth About Startups: What I wish someone had told me about entrepreneurs...
The Truth About Startups: What I wish someone had told me about entrepreneurs...
 
An intro to Docker, Terraform, and Amazon ECS
An intro to Docker, Terraform, and Amazon ECSAn intro to Docker, Terraform, and Amazon ECS
An intro to Docker, Terraform, and Amazon ECS
 
Comprehensive Terraform Training
Comprehensive Terraform TrainingComprehensive Terraform Training
Comprehensive Terraform Training
 
Infrastructure as code: running microservices on AWS using Docker, Terraform,...
Infrastructure as code: running microservices on AWS using Docker, Terraform,...Infrastructure as code: running microservices on AWS using Docker, Terraform,...
Infrastructure as code: running microservices on AWS using Docker, Terraform,...
 
Agility Requires Safety
Agility Requires SafetyAgility Requires Safety
Agility Requires Safety
 
Startup Ideas and Validation
Startup Ideas and ValidationStartup Ideas and Validation
Startup Ideas and Validation
 
A Guide to Hiring for your Startup
A Guide to Hiring for your StartupA Guide to Hiring for your Startup
A Guide to Hiring for your Startup
 
Startup DNA: Speed Wins
Startup DNA: Speed WinsStartup DNA: Speed Wins
Startup DNA: Speed Wins
 
Node.js vs Play Framework (with Japanese subtitles)
Node.js vs Play Framework (with Japanese subtitles)Node.js vs Play Framework (with Japanese subtitles)
Node.js vs Play Framework (with Japanese subtitles)
 
Node.js vs Play Framework
Node.js vs Play FrameworkNode.js vs Play Framework
Node.js vs Play Framework
 
Rapid prototyping
Rapid prototypingRapid prototyping
Rapid prototyping
 
Composable and streamable Play apps
Composable and streamable Play appsComposable and streamable Play apps
Composable and streamable Play apps
 
Play Framework: async I/O with Java and Scala
Play Framework: async I/O with Java and ScalaPlay Framework: async I/O with Java and Scala
Play Framework: async I/O with Java and Scala
 
The Play Framework at LinkedIn
The Play Framework at LinkedInThe Play Framework at LinkedIn
The Play Framework at LinkedIn
 
Kings of Code Hack Battle
Kings of Code Hack BattleKings of Code Hack Battle
Kings of Code Hack Battle
 

Recently uploaded

Accelerating Migrations = Recommendations
Accelerating Migrations = RecommendationsAccelerating Migrations = Recommendations
Accelerating Migrations = Recommendations
isBullShit
 
Types of Weaving loom machine & it's technology
Types of Weaving loom machine & it's technologyTypes of Weaving loom machine & it's technology
Types of Weaving loom machine & it's technology
ldtexsolbl
 
Discovery Series - Zero to Hero - Task Mining Session 1
Discovery Series - Zero to Hero - Task Mining Session 1Discovery Series - Zero to Hero - Task Mining Session 1
Discovery Series - Zero to Hero - Task Mining Session 1
DianaGray10
 
leewayhertz.com-AI agents for healthcare Applications benefits and implementa...
leewayhertz.com-AI agents for healthcare Applications benefits and implementa...leewayhertz.com-AI agents for healthcare Applications benefits and implementa...
leewayhertz.com-AI agents for healthcare Applications benefits and implementa...
alexjohnson7307
 
Improving Learning Content Efficiency with Reusable Learning Content
Improving Learning Content Efficiency with Reusable Learning ContentImproving Learning Content Efficiency with Reusable Learning Content
Improving Learning Content Efficiency with Reusable Learning Content
Enterprise Knowledge
 
BLOCKCHAIN TECHNOLOGY - Advantages and Disadvantages
BLOCKCHAIN TECHNOLOGY - Advantages and DisadvantagesBLOCKCHAIN TECHNOLOGY - Advantages and Disadvantages
BLOCKCHAIN TECHNOLOGY - Advantages and Disadvantages
SAI KAILASH R
 
UX Webinar Series: Aligning Authentication Experiences with Business Goals
UX Webinar Series: Aligning Authentication Experiences with Business GoalsUX Webinar Series: Aligning Authentication Experiences with Business Goals
UX Webinar Series: Aligning Authentication Experiences with Business Goals
FIDO Alliance
 
NVIDIA at Breakthrough Discuss for Space Exploration
NVIDIA at Breakthrough Discuss for Space ExplorationNVIDIA at Breakthrough Discuss for Space Exploration
NVIDIA at Breakthrough Discuss for Space Exploration
Alison B. Lowndes
 
leewayhertz.com-Generative AI tech stack Frameworks infrastructure models and...
leewayhertz.com-Generative AI tech stack Frameworks infrastructure models and...leewayhertz.com-Generative AI tech stack Frameworks infrastructure models and...
leewayhertz.com-Generative AI tech stack Frameworks infrastructure models and...
alexjohnson7307
 
What's New in Teams Calling, Meetings, Devices June 2024
What's New in Teams Calling, Meetings, Devices June 2024What's New in Teams Calling, Meetings, Devices June 2024
What's New in Teams Calling, Meetings, Devices June 2024
Stephanie Beckett
 
Semantic-Aware Code Model: Elevating the Future of Software Development
Semantic-Aware Code Model: Elevating the Future of Software DevelopmentSemantic-Aware Code Model: Elevating the Future of Software Development
Semantic-Aware Code Model: Elevating the Future of Software Development
Baishakhi Ray
 
Opencast Summit 2024 — Opencast @ University of Münster
Opencast Summit 2024 — Opencast @ University of MünsterOpencast Summit 2024 — Opencast @ University of Münster
Opencast Summit 2024 — Opencast @ University of Münster
Matthias Neugebauer
 
kk vathada _digital transformation frameworks_2024.pdf
kk vathada _digital transformation frameworks_2024.pdfkk vathada _digital transformation frameworks_2024.pdf
kk vathada _digital transformation frameworks_2024.pdf
KIRAN KV
 
The Path to General-Purpose Robots - Coatue
The Path to General-Purpose Robots - CoatueThe Path to General-Purpose Robots - Coatue
The Path to General-Purpose Robots - Coatue
Razin Mustafiz
 
Camunda Chapter NY Meetup July 2024.pptx
Camunda Chapter NY Meetup July 2024.pptxCamunda Chapter NY Meetup July 2024.pptx
Camunda Chapter NY Meetup July 2024.pptx
ZachWylie3
 
The History of Embeddings & Multimodal Embeddings
The History of Embeddings & Multimodal EmbeddingsThe History of Embeddings & Multimodal Embeddings
The History of Embeddings & Multimodal Embeddings
Zilliz
 
It's your unstructured data: How to get your GenAI app to production (and spe...
It's your unstructured data: How to get your GenAI app to production (and spe...It's your unstructured data: How to get your GenAI app to production (and spe...
It's your unstructured data: How to get your GenAI app to production (and spe...
Zilliz
 
Keynote : AI & Future Of Offensive Security
Keynote : AI & Future Of Offensive SecurityKeynote : AI & Future Of Offensive Security
Keynote : AI & Future Of Offensive Security
Priyanka Aash
 
Communications Mining Series - Zero to Hero - Session 3
Communications Mining Series - Zero to Hero - Session 3Communications Mining Series - Zero to Hero - Session 3
Communications Mining Series - Zero to Hero - Session 3
DianaGray10
 
Acumatica vs. Sage Intacct _Construction_July (1).pptx
Acumatica vs. Sage Intacct _Construction_July (1).pptxAcumatica vs. Sage Intacct _Construction_July (1).pptx
Acumatica vs. Sage Intacct _Construction_July (1).pptx
BrainSell Technologies
 

Recently uploaded (20)

Accelerating Migrations = Recommendations
Accelerating Migrations = RecommendationsAccelerating Migrations = Recommendations
Accelerating Migrations = Recommendations
 
Types of Weaving loom machine & it's technology
Types of Weaving loom machine & it's technologyTypes of Weaving loom machine & it's technology
Types of Weaving loom machine & it's technology
 
Discovery Series - Zero to Hero - Task Mining Session 1
Discovery Series - Zero to Hero - Task Mining Session 1Discovery Series - Zero to Hero - Task Mining Session 1
Discovery Series - Zero to Hero - Task Mining Session 1
 
leewayhertz.com-AI agents for healthcare Applications benefits and implementa...
leewayhertz.com-AI agents for healthcare Applications benefits and implementa...leewayhertz.com-AI agents for healthcare Applications benefits and implementa...
leewayhertz.com-AI agents for healthcare Applications benefits and implementa...
 
Improving Learning Content Efficiency with Reusable Learning Content
Improving Learning Content Efficiency with Reusable Learning ContentImproving Learning Content Efficiency with Reusable Learning Content
Improving Learning Content Efficiency with Reusable Learning Content
 
BLOCKCHAIN TECHNOLOGY - Advantages and Disadvantages
BLOCKCHAIN TECHNOLOGY - Advantages and DisadvantagesBLOCKCHAIN TECHNOLOGY - Advantages and Disadvantages
BLOCKCHAIN TECHNOLOGY - Advantages and Disadvantages
 
UX Webinar Series: Aligning Authentication Experiences with Business Goals
UX Webinar Series: Aligning Authentication Experiences with Business GoalsUX Webinar Series: Aligning Authentication Experiences with Business Goals
UX Webinar Series: Aligning Authentication Experiences with Business Goals
 
NVIDIA at Breakthrough Discuss for Space Exploration
NVIDIA at Breakthrough Discuss for Space ExplorationNVIDIA at Breakthrough Discuss for Space Exploration
NVIDIA at Breakthrough Discuss for Space Exploration
 
leewayhertz.com-Generative AI tech stack Frameworks infrastructure models and...
leewayhertz.com-Generative AI tech stack Frameworks infrastructure models and...leewayhertz.com-Generative AI tech stack Frameworks infrastructure models and...
leewayhertz.com-Generative AI tech stack Frameworks infrastructure models and...
 
What's New in Teams Calling, Meetings, Devices June 2024
What's New in Teams Calling, Meetings, Devices June 2024What's New in Teams Calling, Meetings, Devices June 2024
What's New in Teams Calling, Meetings, Devices June 2024
 
Semantic-Aware Code Model: Elevating the Future of Software Development
Semantic-Aware Code Model: Elevating the Future of Software DevelopmentSemantic-Aware Code Model: Elevating the Future of Software Development
Semantic-Aware Code Model: Elevating the Future of Software Development
 
Opencast Summit 2024 — Opencast @ University of Münster
Opencast Summit 2024 — Opencast @ University of MünsterOpencast Summit 2024 — Opencast @ University of Münster
Opencast Summit 2024 — Opencast @ University of Münster
 
kk vathada _digital transformation frameworks_2024.pdf
kk vathada _digital transformation frameworks_2024.pdfkk vathada _digital transformation frameworks_2024.pdf
kk vathada _digital transformation frameworks_2024.pdf
 
The Path to General-Purpose Robots - Coatue
The Path to General-Purpose Robots - CoatueThe Path to General-Purpose Robots - Coatue
The Path to General-Purpose Robots - Coatue
 
Camunda Chapter NY Meetup July 2024.pptx
Camunda Chapter NY Meetup July 2024.pptxCamunda Chapter NY Meetup July 2024.pptx
Camunda Chapter NY Meetup July 2024.pptx
 
The History of Embeddings & Multimodal Embeddings
The History of Embeddings & Multimodal EmbeddingsThe History of Embeddings & Multimodal Embeddings
The History of Embeddings & Multimodal Embeddings
 
It's your unstructured data: How to get your GenAI app to production (and spe...
It's your unstructured data: How to get your GenAI app to production (and spe...It's your unstructured data: How to get your GenAI app to production (and spe...
It's your unstructured data: How to get your GenAI app to production (and spe...
 
Keynote : AI & Future Of Offensive Security
Keynote : AI & Future Of Offensive SecurityKeynote : AI & Future Of Offensive Security
Keynote : AI & Future Of Offensive Security
 
Communications Mining Series - Zero to Hero - Session 3
Communications Mining Series - Zero to Hero - Session 3Communications Mining Series - Zero to Hero - Session 3
Communications Mining Series - Zero to Hero - Session 3
 
Acumatica vs. Sage Intacct _Construction_July (1).pptx
Acumatica vs. Sage Intacct _Construction_July (1).pptxAcumatica vs. Sage Intacct _Construction_July (1).pptx
Acumatica vs. Sage Intacct _Construction_July (1).pptx
 

Dust.js

  • 1. { dust.js } at LinkedIn Yevgeniy Brikman
  • 2. 2011: LinkedIn adopted dust.js, a client side templating language
  • 3. This is the story of client side templating at massive scale
  • 4. Dust in the wild Profile 2.0
  • 5. Dust in the wild People You May Know
  • 6. Dust in the wild Influencers
  • 7. About me Presentation Infrastructure Team (also Hackdays, [in]cubator, Engineering Blog, Open Source)
  • 8. Outline 1. A little LinkedIn history 2. A new direction: client side rendering 3. Picking a templating technology 4. Take dust for a spin 5. Challenges: SEO, i18n, logic 6. The Future
  • 9. Outline 1. A little LinkedIn history 2. A new direction: client side rendering 3. Picking a templating technology 4. Take dust for a spin 5. Challenges: SEO, i18n, logic 6. The Future
  • 10. LinkedIn in 2003 A single, monolithic webapp: servlets/JSPs
  • 11. LinkedIn in 2010 New web frameworks to boost productivity: Grails/GSPs, JRuby/ERBs, plus others
  • 12. Fragmentation ● Each tech stack used a different templating technology (JSP, GSP, ERB, etc) ● No easy way to share UI code for common components (e.g. profile, the feed) ● The "global" nav had to be rewritten in multiple languages/technologies. Updating it was very time consuming.
  • 13. We needed to unify the view layer
  • 14. Outline 1. A little LinkedIn history 2. A new direction: client side rendering 3. Picking a templating technology 4. Take dust for a spin 5. Challenges: SEO, i18n, logic 6. The Future
  • 15. We began looking at client side templating solutions
  • 16. Traditional server side rendering All page content is rendered as HTML and sent to the browser
  • 17. Client side rendering (simplified) Server sends JSON. The template is fetched from the CDN and rendered in browser.
  • 18. Client side rendering (full) Server sends JSON embedded in an HTML skeleton. The skeleton has JavaScript code that fetches and renders the template.
  • 19. Client side MVC Client side MVC makes client side rendering even more important.
  • 20. Client side rendering (with MVC) Once a page has loaded, the client side MVC takes over, fetching JSON from the server and rendering it with client side templates
  • 21. Client side rendering benefits ● DRY: works with any server side stack plus client side ● Performance: bandwidth, latency, caching ● Productivity: fast iteration, mock JSON ● Rich apps: client side MVC
  • 22. Outline 1. A little LinkedIn history 2. A new direction: client side rendering 3. Picking a templating technology 4. Take dust for a spin 5. Challenges: SEO, i18n, logic 6. The Future
  • 23. Decisions, decisions We evaluated 26 different options. They tended to fall into one of two groups: Embedded JavaScript and Logic Less.
  • 24. Embedded JavaScript Templates <ul> <% for(var i = 0; i < supplies.length; i ++) { %> <li><%= supplies[i] %> </li> <% } %> </ul> Normal JavaScript code directly in the template.
  • 25. Embedded JavaScript Templates ● underscore.js ● Jade ● haml-js ● jQote2 ● doT ● Stencil ● Parrot ● Eco ● EJS ● jQuery templates ● node-asyncEJS
  • 26. Logic-less Templates <p> Hello {name}! You have {count} new messages. </p> Custom template language that limits logic
  • 27. Embedded JavaScript Templates ● mustache ● dust.js ● handlebars ● Google Closure Templates ● Nun ● Mu ● kite
  • 28. The test Render a simplified LinkedIn profile
  • 29. The rules ● Produce this HTML output ● Use this profile JSON as input ● The same template should render on the server-side and client-side ● Properly handle profile data display rules ● Format numbers and dates correctly
  • 30. The criteria ● DRY ● i18n ● Hot reload ● Performance ● Ramp-up time ● Ramped-up productivity ● Server/client support ● Community ● Library agnostic ● Testable ● Debuggable ● Editor support ● Maturity ● Documentation ● Code documentation
  • 31. Criteria are just guidelines; not all are weighted equally.
  • 33. Google Closure Templates Pros ● Templates are compiled into JavaScript for client-side and Java for server- side. ● Good built-in functionality: loops, conditionals, partials, i18n. ● Documentation is enforced by the template. Cons ● Very little usage outside of Google. No plans to push new versions or accept new contributions. ● Some functionality is missing, such as being able to loop over maps. ● Not DRY: adding new functionality requires implementing plugins in both Java and JavaScript.
  • 34. Mustache Pros ● Very popular choice with a large, active community. ● Server side support in many languages, including Java. ● Logic-less templates do a great job of forcing you to separate presentation from logic. ● Clean syntax leads to templates that are easy to build, read, and maintain. Cons ● A little too logic-less: basic tasks (e.g. label alternate rows with different CSS classes) are difficult. ● View logic is often pushed back to the server or implemented as a "lambda" (callable function). ● For lambdas to work on client and server, you must write them in JavaScript. ● Slow, interpreted templates
  • 35. Handlebars Pros ● Logic-less templates do a great job of forcing you to separate presentation from logic. ● Clean syntax leads to templates that are easy to build, read, and maintain. ● Compiled rather than interpreted templates. ● Better support for paths than mustache (ie, reaching deep into a context object). ● Better support for global helpers than mustache. Cons ● Requires server-side JavaScript to render on the server.
  • 36. Dust.js Pros ● Logic-less templates do a great job of forcing you to separate presentation from logic. ● Clean syntax leads to templates that are easy to build, read, and maintain. ● Compiled rather than interpreted templates. ● Better support for paths than mustache (ie, reaching deep into a context object). ● Better support for global helpers than mustache. ● Inline parameters. ● Blocks & inline partials. ● Overriding contexts. ● Support for asynchronous rendering and streaming. ● Composable templates. Cons ● Requires server-side JavaScript to render on the server. ● Maintainer of github repo is not responsive.
  • 39. Takeaways ● Based on how we weighed our criteria, Dust fit our needs the best ● Use real use cases and identify the most important criteria to you ● For non-trivial views, no templating option works on client and server, unless your server executes JavaScript (v8, Rhino)
  • 40. Outline 1. A little LinkedIn history 2. A new direction: client side rendering 3. Picking a templating technology 4. Take dust for a spin 5. Challenges: SEO, i18n, logic 6. The Future
  • 41. The LinkedIn Fork ● The original maintainer abandoned dust ● The LinkedIn fork is now the most active ● We've added bug fixes, perf improvements, and helpers
  • 42. Try it out ● Homepage: http://linkedin.github.com/dustjs/ ● Try it in the browser: http://linkedin.github. com/dustjs/test/test.html ● Source code: https://github. com/linkedin/dustjs
  • 44. Outline 1. A little LinkedIn history 2. A new direction: client side rendering 3. Picking a templating technology 4. Take dust for a spin 5. Challenges: SEO, i18n, logic 6. The Future
  • 45. How do you handle view logic?
  • 46. Yes, there is such a thing as view logic and it's separate from business logic
  • 47. Complicated Logic logic Logic
  • 48. Homework assignment: implement this view with a truly logic-less template (no helpers/lambdas!)
  • 49. Helpers to the rescue: @eq, @ne {@eq key="foo" value="foo"}The key and value are equal!{/ eq} {@ne key="foo" value="bar"}The key and value are not equal!{/ ne}
  • 50. Helpers to the rescue: @gt, @lt {@gt key="22" value="3"}22 is greater than 3{/ gt} {@lt key="0" value="500"}0 is less than 500{/ lt}
  • 51. Helpers to the rescue: @select {@select key=age} {@eq value="1"}Baby{/eq} {@lt value="10"}Child{/lt} {@lt value="18"}Teen{/lt} {@default}Adult{/default} {/select}
  • 52. Helpers to the rescue: @size, @math You have {@ size key=list/} new messages {@math key="16" method="add" operand="4"/}
  • 53. Full library of helpers is available at: https://github.com/linkedin/dustjs-helpers
  • 54. How do we handled clients without JavaScript? What about SEO?
  • 55. SSR: Server Side Rendering ● Google V8 engine ● A plugin for Apache Traffic Server ● Executes arbitrary JavaScript server side, including rendering dust templates ● Often nicknamed Unified Server Side Rendering... aka, USSR
  • 56. Client side rendering (full, SSR) The HTML Skeleton is written in dust. SSR renders it as HTML.
  • 57. SSR uses ● Render dust skeleton into HTML skeleton ● Render everything server side for: ○ Crawlers/bots/search engines ○ Clients without JavaScript ○ Slow clients (IE < 8) ● Logic less templates help ensure that everything renders correctly server-side. No DOM dependencies!
  • 58. What about i18n? Formatting? URLs?
  • 59. Server side templates <p> <a href="${url.link( 'home-page' }">$!{i18n('hello-world' )}</a> </p> In JSPs, Java libraries did i18n, text formatting, URL generation
  • 60. Sending an entire i18n dictionary, URL dictionary, and all formatting code to the browser is expensive
  • 61. Option #1: everything server side Java controller json.put("name", "Jim"); json.put("home-page-link" , Url.link("home-page" )); json.put("hello-world-text" , I18n.get("hello-world" )); render("profile-page" , json); profile-page dust template <p> <a href="{home-page-link} ">{hello-world-text} </a> </p> All i18n, text formatting, and URL generation is done server side and added to the JSON payload
  • 62. Option #1: everything server side Pros ● Simple, easy to understand ● Clean templates Cons ● Controller code cluttered with view logic
  • 63. Option #2: dynamic pre-processing Original profile-page dust template <p> <a href="{@pre.link key="home-page"} ">{@pre.i18n key="hello-world"} </a> </p> Pre-processed profile-page dust template <p> <a href="{link-123}">{i18n-456}</a> </p> Step 1: the @pre helper tags get replaced at build time with references to unique keys in the JSON
  • 64. Option #2: dynamic pre-processing Java controller json.put("name", "Jim"); render("profile-page" , json); Pre-processed JSON { "name": "Jim", "link-123" : "http://www.linkedin.com" , "i18n-456" : "Hello World" } Step 2: whenever profile-page is rendered, automatically "enhance" the JSON with the requested i18n and URL values
  • 65. Option #2: dynamic pre-processing Pros ● All view logic is in the templates ● Clean server side code Cons ● Complicated, hard to debug ● Tight coupling: need special server and build logic to use templates ● Performance: increased JSON payload and/or more server processing time
  • 66. Option #3: static pre-processing Original profile-page dust template <p> <a href="{home-page-link}">{@i18n}Hello World{/i18n}</a> </p> Pre-processed profile-page dust template (one per language) <p> <a href="{home-page-link}">Hello World</a> </p> <p> <a href="{home-page-link}">Bonjour monde</a> </p> Generate one template per language with translated text already filled in. Link generation and formatting still happen server-side.
  • 67. Option #3: static pre-processing Pros ● Hybrid approach: i18n is in the templates, only formatting/link generation is in controller ● Simpler, easier to debug than dynamic pre- processing Cons ● Custom build process ● Increased template payload, but i18n strings now cached with template
  • 68. Outline 1. A little LinkedIn history 2. A new direction: client side rendering 3. Picking a templating technology 4. Take dust for a spin 5. Challenges: SEO, i18n, logic 6. The Future
  • 69. LinkedIn in 2013 We now many services using client side rendering and many using server-side rendering
  • 70. A full rewrite is too expensive
  • 72. Fizzy Fizzy is an ATS plugin that reads the HTML (skeleton or full) returned by webapps
  • 73. Fizzy <html> <body> <h1>Composable UI </h1> <script type="fs/embed" fs-uri="/news-feed/top" ></script> <script type="fs/embed" fs-uri="/pymk"></script> <script type="fs/embed" fs-uri="/ad"></script> </body> </html> If Fizzy finds an fs/embed in the HTML, it calls the URI and injects the response into the page.
  • 74. Fizzy HTML skeleton Embed Embed Embed A page now consists of a skeleton with a bunch of Fizzy- processed embeds.
  • 76. Typical page HTML Skeleton Dust template Dust template Dust template Dust template Dust template Dust template
  • 77. Typical page HTML Skeleton Dust template Dust template Dust The fold template Dust template Dust template Dust template On initial page load, the user doesn't see anything below the fold
  • 78. Typical page HTML Skeleton Dust template Dust template Dust The fold template Dust template Dust template No need to render Dust template No need to fetch data or render
  • 79. Deferred rendering ● Dramatically improve performance by not rendering anything below the fold ● Improve it even further by not fetching the data for things far out of view ● The challenge: the fold is at different positions on different devices
  • 80. Outline 1. A little LinkedIn history 2. A new direction: client side rendering 3. Picking a templating technology 4. Take dust for a spin 5. Challenges: SEO, i18n, logic 6. The Future
  • 81. Final thoughts ● Dust.js has improved developer productivity and code sharing at LinkedIn ● Client side templating offers powerful new capabilities and benefits ● It also introduces tough new challenges ● It's an evolving technology; now is a good time to get involved