1
0

tex: extend SSR section

This commit is contained in:
surtur 2023-08-18 17:52:56 +02:00
parent cc511c602c
commit 55f8b6154f
Signed by: wanderer
SSH Key Fingerprint: SHA256:MdCZyJ2sHLltrLBp0xQO0O1qTW9BT/xl5nXkDvhlMCI

@ -399,14 +399,14 @@ rendering, so that any user-controlled inputs are handled in a safe way.
\n{2}{Server-side rendering}
The application constructs the web pages entirely server-side and it runs
without a single line of JavaScript, of which the author is especially proud.
It improves load times, decreases attack surface, increases maintainability and
reduces cognitive load that is required when dealing with JavaScript. Of course
that requires extensive usage of non-semantic \texttt{POST}s in forms even for
updates (where \texttt{PUT}s should be used) and the accompanying frequent
full-page refreshes, but that still is not enough to warrant the use of
JavaScript.
The application constructs the web pages \emph{entirely} on the server side and
it runs without a single line of JavaScript, of which the author is especially
proud. It improves load times, decreases the attack surface, increases
maintainability and reduces cognitive load that is required when dealing with
JavaScript. Of course, that requires extensive usage of non-semantic
\texttt{POST} requests in web forms even for data updates (where \texttt{PUT}s
should be used) and the accompanying frequent full-page refreshes, but that
still is not enough to warrant the use of JavaScript.
\n{2}{Frontend}