原生nodejs使用websocket代码分享
程序员文章站
2024-02-07 10:33:52
安装:
npm install ws
服务端(nodejs):
var websocketserver = require...
安装:
npm install ws
服务端(nodejs):
var websocketserver = require('ws').server, wss = new websocketserver({ port: 8080 }); wss.on('connection', function (ws) { console.log('client connected'); ws.on('message', function (message) { console.log(message); }); });
客户端:
<script> var ws = new websocket("ws://localhost:8080"); ws.onopen = function (e) { console.log('connection to server opened'); sendmessage(); } function sendmessage() { ws.send('hello'); } </script>
上一篇: jquery网页加载进度条的实现
推荐阅读
-
原生nodejs使用websocket代码分享
-
C#验证码的创建与使用的示例代码分享
-
使用JavaScript实现网页版Pongo设计思路及源代码分享_javascript技巧
-
使用php方法curl抓取AJAX异步内容思路分析及代码分享_php实例
-
使用php方法curl抓取AJAX异步内容思路分析及代码分享,curlajax
-
php使用strtotime和date函数判断日期是否有效代码分享
-
shell脚本中使用iconv实现批量文件转码的代码分享
-
Jquery使用mouseenter和mouseleave事件实现鼠标经过弹出层且可以点击的示例代码分享
-
原生js和canvas模拟心电图代码分享
-
使用Go基于WebSocket构建千万级视频直播弹幕系统的代码详解