JavaScript Uncaught TypeError:http.createServer不是函数

时间:2018-06-07 03:20:03

标签: javascript node.js http

当我在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文件中运行此代码以检查功能。

有关导致此错误的原因的任何想法?

0 个答案:

没有答案