我正在使用ws
库来处理客户端的Websocket连接。
以下是ws
文档(https://github.com/websockets/ws#usage-examples)中的示例:
const WebSocket = require('ws');
const ws = new WebSocket('ws://www.host.com/path');
ws.on('open', function open() {
ws.send('something');
});
ws.on('message', function incoming(data) {
console.log(data);
});
问题在于该程序仅在收到来自服务器的第一条消息后退出。
我如何使其运行并无限期收听消息?