React
#frontend
React — the UI library behind basically every frontend I ship. This map will cover hooks, state patterns, server components, and the Next.js-adjacent ecosystem as I write those notes up. Seeded for now.
(Not to be confused with ReAct, the AI agent pattern.)
Framework and routing
- Next.js — full-stack React framework; file-based routing and RSC.
- React Router — client-side routing for non-Next SPAs.
UI kits and styling
State and data in the UI
- Redux and Redux Toolkit — predictable global store.
- Ultimate comparison: Redux side-effect middleware — thunk vs saga vs observable (matrix + CSV).
- Effector — reactive stores, events, and effects.
Tables and i18n
- TanStack Table (react-table) — headless table logic.
- next-intl — Next.js internationalization.
Language
- TypeScript — types, inference, and patterns I pair with React.