How the Internet Works for Developers - Pt 1 - Overview & Frontend

How the Internet Works for Developers - Pt 1 - Overview & Frontend15:24

Informasi unduhan dan detail video How the Internet Works for Developers - Pt 1 - Overview & Frontend

Pengunggah:

LearnCode.academy

Diterbitkan pada:

8/10/2014

Penayangan:

568.7K

Deskripsi:

How does the internet work? Most people really don't have to know, but web developers have to know more and more as they grow in their career. These two videos cover how the internet works from a web development perspective. At a high level, the internet is browsers making requests to servers and getting responses back. Each request contains headers that tell the server how to respond. The server responds with a response and a content‑type, which tells the browser what to do with the response. If the content‑type is text/html, then the browser knows to treat the response like an HTML file. If the content‑type is image/jpeg, then the browser knows it's a JPEG file. This video covers how the browser parses the HTML document and ways that you can improve the loading of your webpage with things like concatenating and minifying assets such as JavaScript and CSS.