Tag: webperf
All the articles with the tag "webperf".
Tech Watch Posts
Understanding the main thread in the browser
Published: at 09:58 AMThe browser makes use of a single main thread for executing most important tasks, it's responsible for running JavaScript, handling user interactions, and updating the DOM. The main thread also performs the layout and painting. These are browser's high-level tasks that are bound to the main thread
5 tips to effectively optimize INP in React
Published: at 02:46 PMIn this post, let's consider several optimization techniques for improving Core Web Vitals metrics for sites that are built with React.
Better Code Rendering Through Virtualization
Published: at 03:30 PMHow we rebuilt Codecov's code renderer from the ground up to be faster and more efficient, utilizing virtualization.
How To Improve INP: React
Published: at 03:09 PMAll-in-one guide for improving Interaction-to-Next-Paint (INP) Core Web Vital in React applications. Introduces the useAfterPaintEffect hook.