SlideShare a Scribd company logo
with Templating
   Engines




April 23, 2012   twitter: udayms | linkedin: udayms | facebook: udayms | about.me: udayms   1
udayms
                 about.me/udayms




April 23, 2012            twitter: udayms | linkedin: udayms | facebook: udayms | about.me: udayms   2
Prototyping

April 23, 2012   twitter: udayms | linkedin: udayms | facebook: udayms | about.me: udayms   3
Making
ideas and
designs
REAL
April 23, 2012   twitter: udayms | linkedin: udayms | facebook: udayms | about.me: udayms   4
Quick


April 23, 2012   twitter: udayms | linkedin: udayms | facebook: udayms | about.me: udayms   5
Iterative


April 23, 2012   twitter: udayms | linkedin: udayms | facebook: udayms | about.me: udayms   6
Pixel Perfect


April 23, 2012   twitter: udayms | linkedin: udayms | facebook: udayms | about.me: udayms   7
Real Data


April 23, 2012   twitter: udayms | linkedin: udayms | facebook: udayms | about.me: udayms   8
Complete
Flows

April 23, 2012   twitter: udayms | linkedin: udayms | facebook: udayms | about.me: udayms   9
Small &
Portable

April 23, 2012   twitter: udayms | linkedin: udayms | facebook: udayms | about.me: udayms   10
Almost
‘Production
Quality’
April 23, 2012   twitter: udayms | linkedin: udayms | facebook: udayms | about.me: udayms   11
How?


April 23, 2012   twitter: udayms | linkedin: udayms | facebook: udayms | about.me: udayms   12
Templating
Frameworks

April 23, 2012   twitter: udayms | linkedin: udayms | facebook: udayms | about.me: udayms   13
WTF is that?


April 23, 2012   twitter: udayms | linkedin: udayms | facebook: udayms | about.me: udayms   14
Frameworks that
allow bring in
science to FE
Development


April 23, 2012   twitter: udayms | linkedin: udayms | facebook: udayms | about.me: udayms   15
There are
server side
ones and client
side ones.


April 23, 2012   twitter: udayms | linkedin: udayms | facebook: udayms | about.me: udayms   16
Let’s talk
client side
Templates



April 23, 2012   twitter: udayms | linkedin: udayms | facebook: udayms | about.me: udayms   17
Focus on
Logic-less
Templates



April 23, 2012   twitter: udayms | linkedin: udayms | facebook: udayms | about.me: udayms   18
Why?


April 23, 2012   twitter: udayms | linkedin: udayms | facebook: udayms | about.me: udayms   19
April 23, 2012   twitter: udayms | linkedin: udayms | facebook: udayms | about.me: udayms   20
April 23, 2012   twitter: udayms | linkedin: udayms | facebook: udayms | about.me: udayms   21
April 23, 2012   twitter: udayms | linkedin: udayms | facebook: udayms | about.me: udayms   22
April 23, 2012   twitter: udayms | linkedin: udayms | facebook: udayms | about.me: udayms   23
April 23, 2012   twitter: udayms | linkedin: udayms | facebook: udayms | about.me: udayms   24
Let’s take a
simple example

April 23, 2012   twitter: udayms | linkedin: udayms | facebook: udayms | about.me: udayms   25
<div>



Template                                                              <span> {{first_name}} </span>
                                                                      <span> {{second_name}} </span>
                                                                      <br/>
                                                                      <span> {{city}} </span>

                                                             </div>




April 23, 2012   twitter: udayms | linkedin: udayms | facebook: udayms | about.me: udayms              26
JSON
                                                             {
                                                                      “first_name” : “Uday”,
                                                                      “second_name” : “Shankar”,
                                                                      “city” : “Bangalore”
                                                             }




April 23, 2012   twitter: udayms | linkedin: udayms | facebook: udayms | about.me: udayms          27
Compiled                                                     <div>

                                                                      <span> Uday </span>



HTML
                                                                      <span> Shankar </span>
                                                                      <br/>
                                                                      <span> Bangalore </span>

                                                             </div>




April 23, 2012   twitter: udayms | linkedin: udayms | facebook: udayms | about.me: udayms        28
Rendered
Output
                                                             Uday Shankar
                                                             Bangalore




April 23, 2012   twitter: udayms | linkedin: udayms | facebook: udayms | about.me: udayms   29
Looks like too much
work to print three
words?
April 23, 2012   twitter: udayms | linkedin: udayms | facebook: udayms | about.me: udayms   30
<h1> {{heading}} </h1>

                                                    <ul>




Template
                                                            {{#tweeters}}

                                                            <li>{{name}} [@{{twitter_handle}}]</li>

                                                            {{/tweeters}}

                                                    </ul>

                                                    <h2> {{hashtag}} </h2>




April 23, 2012   twitter: udayms | linkedin: udayms | facebook: udayms | about.me: udayms             31
{
                                         “heading” : “I follow them…”,
                                         “tweeters” : [



JSON
                                              {“name”: “Harish”,“twit_handle”: “hsivaram”},
                                              {“name”: “Amit”,“twit_handle”: “amit_pande”},
                                              {“name”: “Snook”,“twit_handle”: “snookca”},
                                              {“name”: “Mrinal”,“twit_handle”: “mrinal”},
                                              {“name”: “Sudar”,“twit_handle”: “sudarmuthu”},
                                                        ],
                                         “hashtag”: “#metarefresh”
                                 }




April 23, 2012   twitter: udayms | linkedin: udayms | facebook: udayms | about.me: udayms      32
<h1> I follow them… </h1>



Compiled                                                     <ul>
                                                                     <li>Harish [@hsivaram]</li>
                                                                     <li>Amit [@amit_pande}}]</li>




HTML
                                                                     <li>Snook [@snookca]</li>
                                                                     <li>Mrinal [@mrinal]</li>
                                                                     <li>Sudar [@sudarmuthu]</li>

                                                             </ul>

                                                             <h2> #metarefresh </h2>




April 23, 2012   twitter: udayms | linkedin: udayms | facebook: udayms | about.me: udayms            33
Rendered
                                                         I follow them…
                                                                 •     Harish [@hsivaram]
                                                                 •     Amit [@amit_pande}}]



Output
                                                                 •     Snook [@snookca]
                                                                 •     Mrinal [@mrinal]
                                                                 •     Sudar [@sudarmuthu]

                                                         #metarefresh




April 23, 2012   twitter: udayms | linkedin: udayms | facebook: udayms | about.me: udayms     34
Wait! There’s
more… Lot
more!
April 23, 2012   twitter: udayms | linkedin: udayms | facebook: udayms | about.me: udayms   35
mustache.github.com

April 23, 2012   twitter: udayms | linkedin: udayms | facebook: udayms | about.me: udayms   36
handlebarsjs.com

April 23, 2012   twitter: udayms | linkedin: udayms | facebook: udayms | about.me: udayms   37
{dust}
                 akdubya.github.com/dustjs

April 23, 2012     twitter: udayms | linkedin: udayms | facebook: udayms | about.me: udayms   38
underscore.js, Jade, haml-js, jQote2, doT, Stencil, Parrot, Eco, EJS, jQuery templates, node-
asyncEJS, mustache, dust.js, handlebars, Google Closure Templates, Nun, Mu, kite., jazz, jshtml,
jm, jsdom, Liquor, Coffeekup, CoffeeMug, bliss, DryKup, plates, shift, whiskers, node-dom,
stencil, node-jst, tpl, TwigJs, Templ8, PURE, JinJs (and more….)




Many out
there!
April 23, 2012             twitter: udayms | linkedin: udayms | facebook: udayms | about.me: udayms   39
Source: http://engineering.linkedin.com/frontend/client‐side‐templating‐throwdown‐mustache‐handlebars‐dustjs‐and‐more

April 23, 2012   twitter: udayms | linkedin: udayms | facebook: udayms | about.me: udayms                                                                 40
Source: http://engineering.linkedin.com/frontend/client‐side‐templating‐throwdown‐mustache‐handlebars‐dustjs‐and‐more

April 23, 2012   twitter: udayms | linkedin: udayms | facebook: udayms | about.me: udayms                                                                 41
Source: http://engineering.linkedin.com/frontend/client‐side‐templating‐throwdown‐mustache‐handlebars‐dustjs‐and‐more

April 23, 2012   twitter: udayms | linkedin: udayms | facebook: udayms | about.me: udayms                                                                 42
Source: http://engineering.linkedin.com/frontend/client‐side‐templating‐throwdown‐mustache‐handlebars‐dustjs‐and‐more

April 23, 2012   twitter: udayms | linkedin: udayms | facebook: udayms | about.me: udayms                                                                 43
Source: http://engineering.linkedin.com/frontend/client‐side‐templating‐throwdown‐mustache‐handlebars‐dustjs‐and‐more

April 23, 2012   twitter: udayms | linkedin: udayms | facebook: udayms | about.me: udayms                                                                 44
Source: http://engineering.linkedin.com/frontend/client‐side‐templating‐throwdown‐mustache‐handlebars‐dustjs‐and‐more

April 23, 2012   twitter: udayms | linkedin: udayms | facebook: udayms | about.me: udayms                                                                 45
Source: http://engineering.linkedin.com/frontend/client‐side‐templating‐throwdown‐mustache‐handlebars‐dustjs‐and‐more

April 23, 2012   twitter: udayms | linkedin: udayms | facebook: udayms | about.me: udayms                                                                 46
Source: http://engineering.linkedin.com/frontend/client‐side‐templating‐throwdown‐mustache‐handlebars‐dustjs‐and‐more

April 23, 2012   twitter: udayms | linkedin: udayms | facebook: udayms | about.me: udayms                                                                 47
Source: http://engineering.linkedin.com/frontend/client‐side‐templating‐throwdown‐mustache‐handlebars‐dustjs‐and‐more

April 23, 2012   twitter: udayms | linkedin: udayms | facebook: udayms | about.me: udayms                                                                 48
Source: http://engineering.linkedin.com/frontend/client‐side‐templating‐throwdown‐mustache‐handlebars‐dustjs‐and‐more

April 23, 2012   twitter: udayms | linkedin: udayms | facebook: udayms | about.me: udayms                                                                 49
Source: http://engineering.linkedin.com/frontend/client‐side‐templating‐throwdown‐mustache‐handlebars‐dustjs‐and‐more

April 23, 2012   twitter: udayms | linkedin: udayms | facebook: udayms | about.me: udayms                                                                 50
{dust}
       http://engineering.linkedin.com/frontend/client-side-templating-throwdown-mustache-handlebars-dustjs-and-more




April 23, 2012                     twitter: udayms | linkedin: udayms | facebook: udayms | about.me: udayms            51
April 23, 2012   twitter: udayms | linkedin: udayms | facebook: udayms | about.me: udayms   52
Questions?

April 23, 2012   twitter: udayms | linkedin: udayms | facebook: udayms | about.me: udayms   53

More Related Content

PDF
Clients in control: building demand-driven systems with Om Next
PPTX
How to survive the JavaScript apocalypse
PPTX
Native Handlebars: The future of CMS templating
PDF
How the Bay Area Company Cultures Impact a Chinese Designer
PDF
How and When to Use FalcorJS
PDF
React London April- Fully functional: Central state is a great fit for React ...
PDF
20140708 - Jeremy Edberg: How Netflix Delivers Software
PDF
#NoXML: Eliminating XML in Spring Projects - SpringOne 2GX 2015
Clients in control: building demand-driven systems with Om Next
How to survive the JavaScript apocalypse
Native Handlebars: The future of CMS templating
How the Bay Area Company Cultures Impact a Chinese Designer
How and When to Use FalcorJS
React London April- Fully functional: Central state is a great fit for React ...
20140708 - Jeremy Edberg: How Netflix Delivers Software
#NoXML: Eliminating XML in Spring Projects - SpringOne 2GX 2015

More from Uday Shankar (17)

PDF
Crafting delightful experiences
PDF
Design - What differentiates the useful from usable & delightful
PDF
The Good, Bad & Ugly of UI Design
PDF
Prototyping
PDF
What Drives The World
PDF
Demystifying User Experience
PDF
Touch & Multi Touch - A UX Perspective
PDF
Mobile Applications, Emerging Markets & Tourism
PDF
Khuljaa Sim Sim
PDF
Prototyping SMS/Voice Services
PDF
UI Engineering - Rebooted
PDF
Science of prototyping
PDF
Usability & Prototyping
PDF
Rapid Prototyping
PPTX
User Experioence - delivering great ux through great ui
PDF
Effective UI Development using Adobe Flex
PPT
Adobe® Flex™
Crafting delightful experiences
Design - What differentiates the useful from usable & delightful
The Good, Bad & Ugly of UI Design
Prototyping
What Drives The World
Demystifying User Experience
Touch & Multi Touch - A UX Perspective
Mobile Applications, Emerging Markets & Tourism
Khuljaa Sim Sim
Prototyping SMS/Voice Services
UI Engineering - Rebooted
Science of prototyping
Usability & Prototyping
Rapid Prototyping
User Experioence - delivering great ux through great ui
Effective UI Development using Adobe Flex
Adobe® Flex™
Ad

Recently uploaded (20)

PDF
How ambidextrous entrepreneurial leaders react to the artificial intelligence...
PDF
1 - Historical Antecedents, Social Consideration.pdf
PPTX
Group 1 Presentation -Planning and Decision Making .pptx
PDF
Transform Your ITIL® 4 & ITSM Strategy with AI in 2025.pdf
PDF
Web App vs Mobile App What Should You Build First.pdf
PPTX
Final SEM Unit 1 for mit wpu at pune .pptx
PDF
ENT215_Completing-a-large-scale-migration-and-modernization-with-AWS.pdf
PDF
A comparative study of natural language inference in Swahili using monolingua...
PDF
TrustArc Webinar - Click, Consent, Trust: Winning the Privacy Game
PDF
WOOl fibre morphology and structure.pdf for textiles
PDF
Zenith AI: Advanced Artificial Intelligence
PPTX
The various Industrial Revolutions .pptx
PDF
Microsoft Solutions Partner Drive Digital Transformation with D365.pdf
PDF
2021 HotChips TSMC Packaging Technologies for Chiplets and 3D_0819 publish_pu...
PDF
Architecture types and enterprise applications.pdf
PPTX
Tartificialntelligence_presentation.pptx
PPTX
TechTalks-8-2019-Service-Management-ITIL-Refresh-ITIL-4-Framework-Supports-Ou...
PDF
DP Operators-handbook-extract for the Mautical Institute
PPTX
OMC Textile Division Presentation 2021.pptx
PDF
Hybrid model detection and classification of lung cancer
How ambidextrous entrepreneurial leaders react to the artificial intelligence...
1 - Historical Antecedents, Social Consideration.pdf
Group 1 Presentation -Planning and Decision Making .pptx
Transform Your ITIL® 4 & ITSM Strategy with AI in 2025.pdf
Web App vs Mobile App What Should You Build First.pdf
Final SEM Unit 1 for mit wpu at pune .pptx
ENT215_Completing-a-large-scale-migration-and-modernization-with-AWS.pdf
A comparative study of natural language inference in Swahili using monolingua...
TrustArc Webinar - Click, Consent, Trust: Winning the Privacy Game
WOOl fibre morphology and structure.pdf for textiles
Zenith AI: Advanced Artificial Intelligence
The various Industrial Revolutions .pptx
Microsoft Solutions Partner Drive Digital Transformation with D365.pdf
2021 HotChips TSMC Packaging Technologies for Chiplets and 3D_0819 publish_pu...
Architecture types and enterprise applications.pdf
Tartificialntelligence_presentation.pptx
TechTalks-8-2019-Service-Management-ITIL-Refresh-ITIL-4-Framework-Supports-Ou...
DP Operators-handbook-extract for the Mautical Institute
OMC Textile Division Presentation 2021.pptx
Hybrid model detection and classification of lung cancer
Ad

Ninja Prototyping with Templating Frameworks