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
241 views Asked by Ramya At
1
There are 1 answers
Related Questions in JQUERY-TEMPLATES
- Jsrender data value break on whitespace
- How can I load data from jsrender template and update it
- Using jQuery tmpl in Wordpress and problem with ${ data} placeholder
- Nested template issue
- Backbone model with a function in defaults returning object to use in jquery template
- jQuery template language: How to loop int in a list
- Google maps click event on anchor for telephone
- jQuery templates not working (jQuery 3.4.1)
- I have problem with "jQuery template" when using Json file
- How to assign local variable in Jquery template
- How to organize single page app navigation with JQuery and ColdFusion 2016?
- Understanding Robot Log (log.html) file construction
- Why isn't the appendTo method found in my jQuery script?
- Extract i variable in for function in JavaScript Templates
- How to hide a column in jquery template
Related Questions in TEMPLATING
- why tinyButStrong is not formatting my view correctly when merging block?
- What template engine does Koha use to render ISBD views?
- Javascript: Map string using regex and include only matched groups
- Sveltekit with Fiber: make the Fiber backend render a HTML template if the sveltekit's js crashes
- Joomla 4x - orreride wrongly using default file
- How to dynamically resolve templated string?
- Templating markdown with python (how to?)
- moustache syntax strangely not working in tsx file
- Factory pattern where abstract class has templating?
- Flask Application Not Updating Information on Profile Page or the entire site actually
- How to override specific portion of a FTL template (Keycloak pages)?
- Mailjet templating - conditional decision when a variable is N/A
- BigCommerce Templating - How to grab a list of all products
- node express hogan partials nesting
- related-posts do not load until this line of code is refreshed in Blogger Templating language
Related Questions in CLIENT-SIDE-TEMPLATING
- Templating KaTex String through Javascript template literals
- (Handlebar.JS)Best way to output different templates for items with certain keys
- For a website with high user interaction, is it better client side rendering or server side renderin?
- fix handlebar js not working on client side
- Node.js & Mustache.js: How to separate server-side rendering than client-side mustache templating?
- Is it possible to use dynamic keys in dust js?
- SharePoint Modern experience - ClientSidePage Section Background - How to Color?
- Moving From {{ mustache }} To Vue
- Will HTML templating mechanism works in Angular?
- Nunjucks: Loop through first 5 items in for loop
- Nunjucks/Jinja - alternative for `include` when access to scope is needed
- is freemaker a client side template engine?
- Client side and Server side rendering of ejs template
- How to conditionally close html tag in Angular 2
- Handlebars example not working
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?
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)
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