A Simple Web Server
This lesson explains how to design a web server that provides services over the web.
We'll cover the following...
Simple web server
HTTP is a higher-level protocol than TCP, and it describes how a web server communicates with client-browsers. Specifically for that purpose, Go has net/http
package, which we will now explore.
We will start with some really simple concepts. First, let’s write a Hello world! web server.
We import http
, ...