NodeJS源码解析 – HTTP Server模块

NodeJS源码解析 - HTTP Server模块 浏览量:2 | 分类:Node.js | 发布日期:2018-03-04 NodeJS源码解析 - HTTP Server模块 http是nodejs中重要的模块之一,有必要了解它的运行原理 回到helloworld ,当node在收到一个http请求,会创建一个http.Server,注册并监听request。 var http = require('http'); http.createServer((req, res) => { ...