Nodejs webSocket test

Posted 水上由岐

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Nodejs webSocket test相关的知识,希望对你有一定的参考价值。

今天稍微看了一下websocket的有关实现:
html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title></title>
    <script type="text/javascript">
        var ws=new WebSocket("ws://localhost:3004");
        ws.onopen = function()
            ws.send("hello");

        
        ws.onmessage = function(msg)
            console.log(msg.data);
        
    </script>
</head>
<body>
</body>
</html>

Nodejs server

var WebSocketServer = require('ws').Server
    , wss = new WebSocketServer(port:3004);


wss.on('connection', function(ws) 
    ws.on('message', function(message) 
        console.log('received:%s', message);
    );
    ws.send('I am a message sent from a ws server');
);

以上

以上是关于Nodejs webSocket test的主要内容,如果未能解决你的问题,请参考以下文章

nodejs-websocket介绍

nodejs+webSocket

Node.js笔记-使用nodejs-websocket构建WebSocket服务

nodejs建立websocket通信

Windows 上的 nodejs 和 websockets

WebSocket NGINX/NODEJS 粘性问题