Skip to content

Commit cd77f2b

Browse files
authored
Update concept.md
1 parent be7cb5c commit cd77f2b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/advanced/technical/concept.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,16 +28,16 @@ Several frameworks adopt this pattern:
2828

2929
#### Historical Context
3030

31-
In early web development, **Server-Side Rendering (SSR)** was the norm. Each user interaction triggered a full-page reload, with the server returning the complete HTML content.
31+
In early web development, **Server-Side Rendering (SSR)** was the norm. Each user interaction triggered a full-page reload, with the server returning the complete HTML content. In SAP context this is known from ITS Mobile or SAP GUI for HTML.
3232

33-
With the rise of Single Page Applications (SPAs), rendering responsibilities shifted to the browser. SPAs retrieve raw data—often via OData in SAP systems—and dynamically build UIs using JavaScript frameworks such as React, Angular, or Vue, or in the SAP context, UI5.
33+
With the rise of Single Page Applications (SPAs), rendering responsibilities shifted to the browser. SPAs retrieve raw data—often via OData in SAP systems—and dynamically build UIs using JavaScript frameworks such as React, Angular, or Vue. SAP released UI5 in 2010 as client-side SPA JavaScript framweork.
3434

3535
However, SPAs brought along new complexities:
3636
- API layers and data contracts
3737
- Separate frontend-backend development workflows
3838
- Complex build and deployment pipelines
3939

40-
As a counter-approach, HTML Over the Wire reestablishes server-driven UI updates:
40+
As a counter-approach, HTML Over-the-Wire reestablishes server-driven UI updates:
4141
- Servers send UI fragments, not full pages
4242
- Browsers update only specific parts of the page
4343
- Frontends stay simple and declarative

0 commit comments

Comments
 (0)