🎁 New User? Get 20% off your first purchase with code NEWUSER20 Register Now →
Menu

Categories

Web Development Intermediate

What is HTTP/2?

The second major version of HTTP that improves performance through multiplexing, header compression, and server push.

HTTP/2, standardized in 2015, addresses performance limitations of HTTP/1.1. Key features include multiplexing (multiple requests/responses over a single TCP connection without head-of-line blocking), HPACK header compression (reducing redundant header data), server push (proactively sending resources before the client requests them), stream prioritization, and binary framing (more efficient than text-based HTTP/1.1). HTTP/2 dramatically reduces page load times by eliminating the need for performance workarounds like domain sharding, CSS sprites, and inline resources. Most web servers (Nginx, Apache) and CDNs support HTTP/2 with TLS.

Related Terms

OAuth Scope
A mechanism in OAuth that limits an application's access to a user's account to specific resources or actions.
Service Worker
A JavaScript file that runs in the background, enabling offline support, push notifications, and background sync for web apps.
AJAX
A technique for making asynchronous HTTP requests from a web page without reloading the entire page.
SSR (Server-Side Rendering)
A technique where web pages are rendered on the server and sent as complete HTML to the browser, improving SEO and initial load time.
JSON Schema
A vocabulary for validating the structure and content of JSON data, ensuring API requests and responses conform to expected formats.
CORS Preflight
An automatic OPTIONS request sent by browsers before certain cross-origin requests to check if the actual request is permitted.
View All Web Development Terms →