Skip to content

Frontend Concepts — Deep Reference

100+ frontend concepts every frontend developer should be able to explain. Organized by category. Each concept includes what it is, how it works internally, code examples, and practical context.

Files

#FileTopics
101-react-internals-and-rendering.mdHydration, partial hydration, islands architecture, streaming SSR, concurrent rendering, time slicing, reconciliation algorithm, fiber architecture, virtual DOM diffing complexity, suspense boundaries, selective hydration, server components, tearing in concurrent UI, scheduler priorities, render waterfalls, edge rendering
202-data-and-state-patterns.mdStructural sharing, immutable data patterns, referential equality, memoization pitfalls, stale closure problem, race conditions in UI state, finite state modeling, event sourcing in frontend, optimistic UI rollback strategy, offline conflict resolution, CRDT basics for collaboration, WebRTC
303-javascript-runtime.mdEvent loop (macro vs microtasks), task starvation, priority inversion in async code, AbortController, backpressure in streams API, streaming fetch response handling
404-browser-rendering-and-performance.mdLayout thrashing, critical rendering path, render blocking resources, browser compositing layers, paint vs composite vs layout, GPU acceleration in CSS, CSS containment, subpixel rendering, deterministic rendering, idempotent UI actions
505-browser-apis.mdIntersectionObserver internals, ResizeObserver loop limits, MutationObserver cost, IndexedDB, Web Workers vs Service Workers, SharedArrayBuffer, Transferable objects, OffscreenCanvas, WebAssembly integration, PerformanceObserver API, Long Tasks API, Pointer events
606-web-components.mdShadow DOM, Custom Elements lifecycle, Web Components interoperability
707-build-and-module-systems.mdTree shaking internals, code splitting strategies, dynamic import chunking, Module Federation, micro-frontend orchestration
808-networking-and-caching.mdService Worker lifecycle traps, cache invalidation strategies, stale-while-revalidate, ETag vs Cache-Control, HTTP/3 and QUIC, priority hints, preload vs prefetch vs preconnect, CORS preflight, speculative prerendering
909-security.mdSameSite cookie modes, CSRF vs XSS mitigation, Content Security Policy (CSP), Trusted Types, DOM clobbering, prototype pollution
1010-performance-metrics-and-memory.mdFirst Input Delay (FID), Interaction to Next Paint (INP), Cumulative Layout Shift (CLS), Largest Contentful Paint (LCP), browser memory leak detection, detached DOM nodes, garbage collection timing
1111-accessibility.mdAccessibility tree, ARIA live regions internals
1212-project-setup-guide.mdVite + React + TS/JS scaffold, Tailwind, React Router, Vitest + RTL, Zustand, TanStack Query, React Hook Form, Axios, folder structure, env variables, interview scenario recipes, speed tips
1313-vite.mdHow Vite works (native ESM, esbuild pre-bundling, Rollup builds), HMR internals, vite.config.ts anatomy, environment variables, CSS handling, static assets
1414-eslint.mdESLint flat config (v9+), key rules (hooks, TS, imports), plugins (react-hooks, jsx-a11y, import), VS Code integration, old vs new config format
1515-prettier.mdPrettier config, ESLint integration (eslint-config-prettier), VS Code setup, pre-commit hooks (husky + lint-staged)
1616-bundlers.mdHow bundling works, Webpack vs Rollup vs esbuild vs Vite vs Turbopack vs SWC comparison, production build step-by-step, chunks, hashing, source maps
1717-react-project-fundamentals.mdReact render cycle, JSX internals, hooks deep dive (useState, useEffect, useRef, useMemo, useCallback, custom hooks), component patterns, keys, error boundaries, React 18/19 features, package.json, tsconfig.json

Frontend interview preparation reference.