How web works

Last updated ago - September 3, 2023

After some time working with web development, you will start to wonder how the web works. The underlying technologies that make the web possible. How the browser communicates with the server, and how the server communicates with the database and other services. On this page we are gathering resources that will help you this topic.

General overview

HTTP Status Codes

HTTP status codes are a way to communicate with the client the status of the request. For example, if the request was successful, or if there was an error. You can find a list of all the HTTP status codes here - MDN Docs.

Here is a video from Web Dev Simplified that explains the HTTP status codes.

A more bare bones version of list of HTTP status codes can be found here on www.restapitutorial.com.

Cross-Origin Resource Sharing (CORS)

Explanation of CORS by Web Dev Simplified here.