一个网页请求,包含2次 http包交换 浏览器向 http服务器发送请求 http包http服务器向浏览器返回 http包 const http = require('http');http.createServer((request, response) => { response.writeHead(200) response.end('ok')}).listen(3000)