Node.js实现WebSocket
warning:
这篇文章距离上次修改已过239天,其中的内容可能已经有所变动。
在Node.js中,可以使用ws
模块来实现WebSocket服务器。以下是一个简单的例子:
首先,通过npm安装ws
模块:
npm install ws
然后,使用以下代码创建一个简单的WebSocket服务器:
const WebSocket = require('ws');
// 创建WebSocket服务器实例,监听端口3000
const wss = new WebSocket.Server({ port: 3000 });
wss.on('connection', function connection(ws) {
// 当客户端连接时触发
ws.on('message', function incoming(message) {
// 当服务器接收到客户端发来的消息时触发
console.log('received: %s', message);
});
// 发送消息给客户端
ws.send('something');
});
console.log('WebSocket server is running on ws://localhost:3000');
运行上述代码后,你将有一个运行中的WebSocket服务器监听3000端口。任何连接到这个端口的客户端都将与服务器进行WebSocket通信。
评论已关闭