preconnected
Preconnected is an adjective used to describe a state in which network connections to a particular host have been established before they are needed. In computing, preconnected connections are opened in advance to reduce the latency of future requests. This is commonly used in web performance to speed up loading of third‑party resources by performing the initial steps of the connection setup—DNS resolution, TCP handshake, and, if applicable, the TLS handshake—before the browser actually requests a resource from the origin.
Implementation commonly relies on the HTML link rel="preconnect" hint, which instructs the browser to establish early
Benefits include reduced latency for early assets such as fonts, analytics, or CDNs, and potentially faster
Practical guidance: apply preconnect selectively to origins that are immediately needed during initial page load, and