摘要: 本文主要过下http生成服务和处理请求的主要流程,其他功能并未涉及。 使用例子 const http = require('http'); http.createServer((req, res) => { res.end('hello word'); }).listen(8080); 例子中从生成 阅读全文
posted @ 2021-02-24 17:12 duan777 阅读(387) 评论(0) 推荐(0) 编辑