原生nodejs使用websocket
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了原生nodejs使用websocket相关的知识,希望对你有一定的参考价值。
- 安装:
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>
- 测试:
以上是关于原生nodejs使用websocket的主要内容,如果未能解决你的问题,请参考以下文章
NodeJS - 使用协议 HTTPS 建立连接 WebSocket