A fiber is a JS object whose linked-list tree lets React pause, resume, and prioritise rendering — and the bailout mechanism is what keeps large UIs fast.
Render strategies: SSR, SSG, ISR, streaming, RSC — and the cost of hydration
SSG renders once at build; SSR per request; ISR refreshes on a schedule; streaming flushes the shell first. Hydration is the separate ~2× cost of making that HTML interactive — RSC and islands cut what needs to hydrate.
Page load is a relay race through network, parse, paint, and hydration — the capstone unit traces all eight layers, names the five places production reliably dies, and gives you the three-move discipline to diagnose and fix any of them.
Every unit, from the underground to the orbit. Browser & Frontend Runtime is one constellation in the atlas — climb another topic and watch the next one light up.