Node.js+webSocket
// 引入WebSocket模块 var ws = require('nodejs-websocket') var PORT = 3030 var server = ws.createServer(function(conn){ console.log('新连接') conn.on("text",function(str){ console.log("接受数据"+str) conn.sendText("返回数据:"+str) }) conn.on("close",function(code,reason){ console.log("关闭连接") }) conn.on("error",function(err){ console.log(err) }) }).listen(PORT) console.log('websocket 监听端口: ' + PORT)
github地址:https://github.com/Rossy11/node
相关推荐
柳木木的IT 2020-11-04
joynet00 2020-09-23
wenf00 2020-09-14
蓝色深海 2020-08-16
wuychn 2020-08-16
取个好名字真难 2020-08-06
darylove 2020-06-26
shufen0 2020-06-20
Lovexinyang 2020-06-14
WangBowen 2020-06-14
firejq 2020-06-14
hjhmpl 2020-06-14
水痕 2020-06-07
guozewei0 2020-06-06
woniyu 2020-06-02
取个好名字真难 2020-06-01
guozewei0 2020-05-28
woniyu 2020-05-26