Skip to main content

6 posts tagged with "Networking"

View All Tags

November 21, 2023 · Updated on · 10 min read

Network request waterfalls show what resources are loaded when opening a website. This helps developers and website owners understand why different content elements show up at different times and how it can be optimized.

Recently I made a wall calendar with 12 request waterfalls for a conference, highlighting different web performance issues. This article goes through these waterfalls one by one and explains what they show. You can also test your own website to see what you can optimize.

August 22, 2023 · Updated on · 14 min read

A Content Delivery Network (CDN) can help you make your website load quickly anywhere in the world. CDNs provide local infrastructure across the world, so your visitors can fetch data quickly from a nearby data center instead of from a different continent.

This article first takes a closer look at the concept of CDNs. What they are exactly, what type of content you can serve on them, and when do they deliver the most value? Then we go through how exactly to use a CDN like Cloudflare to improve your web performance.

October 25, 2022 · Updated on · 30 min read
Anna Monus

The HTTP protocol lets browsers and other applications request resources from a server on the internet to load web pages. HTTP/3 is the latest version of HTTP, published by the Internet Engineering Task Force (IETF) as the RFC 9114 standard.

HTTP3 aims to make websites faster and more secure by providing an application layer over QUIC, a next-generation transport protocol.

At a high level, HTTP3 provides the same functionalities as HTTP2, such as header compression and stream prioritization. However, under the hood, the QUIC transport protocol entirely changes the way we transfer data over the web.

In this article, we'll take an in-depth look at the new features and differences of HTTP3 vs QUIC, how they fit into the overall ecosystem of network protocols, how HTTP3 compares to the previous versions of HTTP, and the cons of the QUIC and HTTP3 protocols.

April 22, 2021 · Updated on · 11 min read

The Chrome DevTools Performance tab is packed full of features that let you audit page performance in depth. You can use it to test both the initial load of your website as well as how quickly it responds to user input, as measured by Google's Interaction to Next Paint metric.

This article explains how to use the Performance tab to profile your site and interpret the results.