我的问题是http
模块和node.js中的其他模块之间有什么区别?为什么http
模块不在./node_modules
中?
在哪里可以找到该模块?
答案 0 :(得分:4)
http
模块由您安装的Node.js提供。这就是所谓的core module
您可以在存储库中查看它们的来源(或在本地下载它们):https://github.com/nodejs/node/tree/master/lib
答案 1 :(得分:1)
var http = require('http');