Web applications generally fall into the CSR or SSR.
| Feature | Client-Side Rendering (CSR) | Server-Side Rendering (SSR) |
|---|---|---|
| Rendering location | Browser | Server |
| Initial page load | Slower | Faster |
| SEO | Worse | Better |
| Server workload | Lower | Higher |
| Browser workload | Higher | Lower |
| Typical use | Internal apps, dashboards | Public websites, e-commerce |
| System Classification |
|
|
The table is worth understanding as it affects architectural decisions as the project progresses.
