time-ws
v1.0.3
Published
get serverTime to websocket
Downloads
6
Readme
安装
npm install time-ws
引用
import { initTimeWS, closeTimeWS } from "time-ws";
使用说明
// 默认返回ws实例
const timeWS = initTimeWS("ws://localhost:8080", (msg) => {
console.log("Message from server:", msg);
});
参数说明
/**
* 初始化 WebSocket 连接并设置事件处理程序。
*
* @param {string} _wsUrl - WebSocket 服务器的 URL,例如 'ws://localhost:8080'。
* @param {function} _fn - 回调函数,用于处理 WebSocket 事件。该函数接受一个参数 `ws`,代表 WebSocket 实例。
*