Published:
Last updated:
Classic Frontend
Classic frontend refers to a return to web standards: HTML, CSS, and native JavaScript, combined with server-side rendering (SSR).
Core Concept
Avoiding unnecessary complexity: instead of massive single-page application (SPA) frameworks (such as React or Angular), one relies on the strengths of the browser. Logic is executed primarily on the server, which improves performance and SEO.
Assessment
- Use case: Content-heavy websites (such as this handbook), landing pages, and applications that must remain maintainable for decades.
- Advantage: Excellent load times (Core Web Vitals), minimal security risks from dependencies, and extremely high longevity.
- Limitation: Less suited to highly interactive real-time UIs (e.g. complex graphic editors).