fetch waterfall
RU: fetch waterfall
A performance pattern where multiple network requests are issued sequentially — each waiting for the previous response — even though the requests are independent and could run in parallel. Total latency scales with the number of requests multiplied by round-trip time; the fix is Promise.all or parallel data loading at the component tree root.