node.js android 聊天,Node.js实现简单聊天服务器
使用Nodejs是如此簡單的實現了一個簡單的聊天服務器
實現代碼如下:
var net = require('net');
var chatServer = net.createServer(),clientList = [];
chatServer.on("connection",function(client){
client.name = client.remoteAddress + ":" + client.remotePort;
client.write("Hi! "+client.name+" \n");
clientList.push(client);
client.on("data",function(data){
//數據發送給客戶端
broadcast(data,client);
// clientList[i].write(data);
});
client.on("end",function(){
clientList.splice(clientList.indexOf(client),1);
});
client.on("error",function(e){
console.log(e)
});
});
chatServer.listen(9000)
function broadcast(message,client){
var cleanup = [];
for(var i=0;i
if(client != clientList[i]){
if(clientList[i].writable){
clientList[i].write(client.name = "says:"+message);
}else{
cleanup.push[clientList[i]];
clientList[i].destory();
}
}
}
}
使用過程就是:
啟動js
node chat.js
連接方式:telnet
telnet 127.0.0.1 9000
總結
以上是生活随笔為你收集整理的node.js android 聊天,Node.js实现简单聊天服务器的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 2017信用卡提额最快方法
- 下一篇: 一键锁屏_ios快捷指令一键登录校园网(