http是构建http服务器重要的模块
如何构建http服务器
const http = require('http')
const server = http.createServer((req, res) => {
console.log(req)
console.log(res)
res.end('2222222222')
})
server.listen(3000)
这么简单的几行代码就可以,在浏览器访问localhost:3000, 看到效果
其实很重要的,还是http模块中的request,response
,请求数据,和响应数据,进行获取和设置
request
请求,说几个比较常见的,方法和属性