我知道这个问题已经存在,但是他们的答案并没有解决我的问题。
错误是“TypeError:app.listen不是函数”;
我的完整代码如下,提前感谢。 (PS,我没有在同一个端口上运行任何东西)
var io = require('socket.io')(app);
var fs = require('fs');
var serialPort = require("serialport");
var app = require('http');
app.createServer(function (req, res) {
fs.readFile(__dirname + '/index.html',
function (err, data) {
res.writeHead(200);
res.end(data);
});
}).listen(1337, '127.0.0.1');
var port = new serialPort(process.platform == 'win32' ? 'COM3' : '/dev/ttyUSB0', {
baudRate: 9600
});
port.on( 'open', function() {
console.log('stream read...');
});
port.on( 'end', function() {
console.log('stream end...');
});
port.on( 'close', function() {
console.log('stream close...');
});
port.on( 'error', function(msg) {
console.log(msg);
});
port.on( 'data', function(data) {
console.log(data);
var buffer = data.toString('ascii').match(/\w*/)[0];
if(buffer !== '') bufferId += buffer;
clearTimeout(timeout);
timeout = setTimeout(function(){
if(bufferId !== ''){
id = bufferId;
bufferId = '';
socket.emit('data', {id:id});
}
}, 50);
});
io.on('connection', function (socket) {
socket.emit('connected');
});
app.listen(80);
答案 0 :(得分:3)
错误来自这一行:
app.listen(80);
由于app是你的http模块var app = require('http');
,你试图听取节点http模块(你很难做到)。您需要使用此http模块创建服务器,然后收听它。
这就是你对这些行所做的:
app.createServer(function (req, res) {
fs.readFile(__dirname + '/index.html',
function (err, data) {
res.writeHead(200);
res.end(data);
});
}).listen(1337, '127.0.0.1');
基本上,http.createServer()返回一个http.server实例。此实例具有一个listen方法,该方法使服务器接受指定端口上的连接。
所以这可行:
var app = require('http');
app.createServer().listen(8080);
这不能:
var app = require('http');
app.listen(8080);
http模块文档:https://nodejs.org/api/http.html#http_http_createserver_requestlistener
答案 1 :(得分:3)
这可能不是SO问题的答案,但在类似情况下测试同样的错误" TypeError:app.listen不是函数"可能可以通过导出模块app
来解决。
$ ./node_modules/.bin/mocha test
可以输出
TypeError: app.listen is not a function
<强>解决方案:强>
尝试添加到server.js
文件的底部:
module.exports = app;
答案 2 :(得分:1)
清除您在那里的所有代码并尝试
const http = require('http');
const handleRequest = (request, response) => {
console.log('Received request for URL: ' + request.url);
response.writeHead(200);
response.end('Hello World!');
};
const www = http.createServer(handleRequest);
www.listen(8080);
然后访问localhost:8080 ...以查看对该页面的回复。
但是如果你想处理页面路由,我建议使用expressjs开始click here for guides 一旦这样做,您就可以重新添加socket.io代码。