当我在node.js中使用http.createServer
时,我收到以下错误。
app.js:145 Uncaught TypeError: http.createServer is not a function
代码如下:
const http = require('http');
http.createServer(onRequest).listen(3000);
console.log('server started on port 3000');
我使用Gulp和我的浏览器控制台日志在app.js
文件中运行此代码以检查功能。
有关导致此错误的原因的任何想法?