How the Internet Works for Developers - Pt 2 - Servers & Scaling

How the Internet Works for Developers - Pt 2 - Servers & Scaling11:57

How the Internet Works for Developers - Pt 2 - Servers & Scaling 视频的下载信息和详情

作者:

LearnCode.academy

发布日期:

2014/10/8

观看次数:

203.6K

简介:

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. The information in these videos is a must-know if you're working on a complex javascript application or a server/backend application. 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 like javascript, css, etc.