http_parser
Converts raw request to Request and build Responses
Parse the raw http request to Request
for stream in listener.incoming
And now you can use Request properties to build a Response and send it
let request = from;
let mut response = new;
if request.path == "/" else
response.send
}