Tag: Frontend
8 items found
Glossary Terms
htmx
htmx is a lightweight library that adds AJAX, WebSocket, and partial server-rendered updates through HTML attributes.
Hydration
Hydration attaches browser-side JavaScript behavior to server-rendered HTML so a static interface becomes interactive.
Islands Architecture
Islands architecture keeps most of a page as static HTML and hydrates only the interactive UI sections as separate islands.
Micro Frontend
Micro frontend splits a large user interface into smaller applications that independent teams can build, deploy, and compose.
Qwik
Qwik is a web framework that resumes application state from HTML and loads JavaScript on demand for fast startup.
React Server Components
React Server Components render selected UI parts on the server and send results without shipping their component code to the browser.
Vite
Vite is a frontend tool that uses ESM for a fast dev server and Rollup to produce optimized production bundles.
Web Storage
Web Storage stores small key-value data in the browser through localStorage and sessionStorage for client-side state.