Ufraan's Notes Digital garden & personal knowledge base
Last modified: Jun 28, 2026Home / 00_inbox / Http Overview.Md

core

http is how browsers and servers talk. it moves data back and forth. many protocols exist, http happens to be the most common.

at its core, http follows two simple ideas: it doesn’t remember anything, and the browser always starts the conversation.

statelessness:

client-server model:

http packets need a reliable way to travel between client and server. that’s where tcp comes in. tcp ensures the data arrives correctly and in order. udp exists too, but it’s less reliable. http chooses tcp because losing parts of a webpage isn’t an option.