Tag Archives: Performance

Code Splitting

Code Splitting

Code splitting is the practice of breaking a JavaScript bundle into smaller chunks that load on demand instead of shipping the whole application…
Continue reading
Lazy Loading

Lazy Loading

Lazy loading is a technique that defers loading of non-critical resources, usually images and iframes, until they are about to enter the viewport.
Continue reading
Lazy Loading

Lazy Loading

Lazy loading means not loading images and other content until someone scrolls down to them. It makes pages load faster initially. For SEO,…
Continue reading
Preload

Preload

Preload is a resource hint that tells the browser to fetch a specific file early and with high priority, before the browser would…
Continue reading
LCP (Largest Contentful Paint)

LCP (Largest Contentful Paint)

Largest Contentful Paint (LCP) is the Core Web Vital that measures loading performance. It records the moment the largest visible content element in…
Continue reading
TTFB (Time to First Byte)

TTFB (Time to First Byte)

Time to First Byte (TTFB) measures how long a browser waits between requesting a page and receiving the first byte of the response…
Continue reading
Image SEO

Image SEO

Image SEO is the practice of making images discoverable, understandable, and rankable by search engines, so they drive traffic through image search and…
Continue reading
Resource Hints

Resource Hints

Resource Hints are link tags that tell the browser to prepare for resources it will likely need, so they are ready sooner when…
Continue reading
Above the Fold

Above the Fold

Above the Fold is the portion of a web page visible in the browser viewport before the user scrolls.
Continue reading
Tree Shaking

Tree Shaking

Tree shaking is a build-time optimization that removes unused code from JavaScript bundles before they ship to the browser.
Continue reading