03.5.md 498 字节
Newer Older
A
astaxie 已提交
1 2
# 3.5 Summary

A
Anchor 已提交
3
In this chapter, we introduced HTTP, DNS resolution flow and how to build a simple web server. Then we talked about how Go implements web servers for us by looking at the source code of the `net/http` package.
A
astaxie 已提交
4

A
Anchor 已提交
5
I hope that you now know much more about web development, and you should see that it's quite easy and flexible to build a web application in Go.
A
astaxie 已提交
6 7 8 9 10

## Links

- [Directory](preface.md)
- Previous section: [Get into http package](03.4.md)
A
Anchor 已提交
11
- Next chapter: [User form](04.0.md)