跳至主要內容

WebSocket

yyshino小于 1 分钟

后端

node中使用

  1. 安装包

    • npm i ws -S
  2. 创建对象

    • const WebSocket = require("ws")
      const wss = new WebSocket.Server({
          port: 9998
      })
      
  3. 监听事件

  4. 发送数据

前端