node.js 入门教程之十 -- http 模块
http 模块是 node.js 处理 networking 网络的关键模块。在之前的章节我介绍了使用 http 模块建立 server 以及发起 GET/POST 请求的方法,可以参考:https://blog.niekun.net/archives/2137.html
http 模块集成于 node.js 核心无需单独安装,使用下面命令引入模块:
const http = require('http')
模块提供了很多 properties,methods 和 classes。