Tag: React
11 items found
Projects
Glossary Terms
Hydration
Hydration attaches browser-side JavaScript behavior to server-rendered HTML so a static interface becomes interactive.
Micro Frontend
Micro frontend splits a large user interface into smaller applications that independent teams can build, deploy, and compose.
Next.js
Next.js extends React with server rendering, static generation, file-based routing, and backend endpoints for production web applications.
React Server Components
React Server Components render selected UI parts on the server and send results without shipping their component code to the browser.
React.js
React is an open-source JavaScript library for building user interfaces from reusable components that update efficiently when state changes.
Redux
Redux centralizes application state in a store and makes changes traceable through an action and reducer flow, mostly in React apps.
Remix
Remix is a React-based full-stack framework that combines routes, loaders, actions, and HTTP caching around web standards.
TanStack Query (React Query)
TanStack Query manages server data in React apps through query keys, caching, background refresh, and synchronization.
Virtual DOM
The Virtual DOM is a lightweight in-memory representation used to calculate UI changes before updating the real DOM.
Zustand
Zustand is a hook-based state management library for React apps that need small, fast, global stores without heavy boilerplate.