我已经使用ws-lib在Node.js中编写了一个小型WebSocketServer。到目前为止,它是有效的,但过了一段时间,服务器就无法访问了。然后我需要运行
$ node index.js
再次将其恢复在线。
这是我的代码:
var WebSocketServer = require('ws').Server,
wss = new WebSocketServer({port: 8888, path: '/login'});
var userList = [
{ "nick": "foo" },
{ "nick": "bar" },
{ "nick": "baz" }
];
wss.on('connection', function connection(ws) {
console.log('client connected');
ws.on('message', function incoming(message) {
console.log('received %s', message);
var found = false;
userList.forEach(function(e) {
if(e.nickname == message) {
ws.send(JSON.stringify(e));
found = true;
}
});
if(!found) {
ws.send('not found');
}
});
ws.on('close', function() {
console.log('connection closed');
});
});
这种行为是故意的吗?我的第一个想法是,这段代码只能处理一个实例,但我尝试了多个连接,没有任何问题。
现在我正在运行带有"forever"的文件,但我想知道这是否真的有必要。
有一段超时时间,之后连接将丢失。您需要在一定的时间间隔内不断发送数据包,以保持连接的有效性。数据包可以是空的。