What makes most sense for large enterprise applications involving several jsps and many transactions (like a commercial banking application or a healthcare application with huge amounts of data) w.r.t templating? Is it just a matter of personal choice or is there a strong reason to lean towards server-side templating?
Client-side vs server-side templating for large enterprise applications
239 Views Asked by Ramya At
1
There are 1 best solutions below
Related Questions in JQUERY-TEMPLATES
- Grab the first item in jQuery Template array
- jQuery getJSON data not loading into tmpl
- Check for null value in object in if statement in jquery tmpl
- Multiple test conditions in jQuery template "if"
- Using jsRender instead of jquery template plugin
- Why does jquery tmpl not parse my {{ if }}?
- Accessing Multidimensional JSON with jQuery Templates
- jquery display template with no data
- jQuery data() method inside templates
- JQuery tmpl is not working as expected in my if block
- Including markup in a function called from within a jquery template?
- jQuery template select option
- Why is the template not getting rendered?
- jQuery tooltip plugin - fade is null or not an object
- jQuery Validation with jQuery.Templates Scenario
Related Questions in TEMPLATING
- Using Dust.js (LinkedIn version) `@eq` to match multiple values
- Including template parts from index.html (that is, files outside the _layouts folder)
- how to return a dictionary with template variables
- Layout not displayed with {{post.content}} in Jekyll
- Incorrect rendering html template on hyperlink
- Golang templating does not work properly
- Volt - templates extending
- Python preppy producing offensive leading blank line
- Replace multiple instances of the same value in a javascript template
- android - overlap the shadow by a button
- Handlebars with Express.js - Should I transform raw data in templates or elsewhere?
- Kendo binding and templating
- How to separate head?
- Java Generics, Tightly Bounded Parameter Type
- Why is ui:fragement not rendered inside ui:composition
Related Questions in CLIENT-SIDE-TEMPLATING
- Nunjucks: Loop through first 5 items in for loop
- One-off rendering of an angular template string
- Handbars.js template with top level array
- Getting TemplateSyntaxError: unexpected char u'#' on including a Mustache template in html file served by python Google App Engine
- How do you register precompiled templates in Can.js
- Client-side vs server-side templating for large enterprise applications
- Getting the last element from a JSON array in a Handlebars template
- Way to organize client-side templates into individual files?
- Illustrator/SVG to JavaScript workflow? (A templating library?)
- best method to build table headings and data separately using same json in underscore.js?
- Difference between clientside and serverside (ajax) rendering for search page, concerning SEO
- How to use precompiled templates in Handlebars with RequireJS?
- Moving From {{ mustache }} To Vue
- Basic Example of Client Side Templating with Dust.js
- Repeatedly Render Dust.js Template with New Data
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Client-side templating is more matter of UI and should not be confused with backend transactions in any way. When your site does something it is still doing HTTP POST which is processed by the server logic. I saw the development more like a natural continuum to build easier to use web enabled by the modern browsers and Javascript engines.
You might find some more info here:
https://github.com/leonidas/transparency/wiki/Frequently-Asked-Questions