🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

socketjs-client

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

socketjs-client

websocket hanlder for web

1.0.2
latest
Source
npm
Version published
Weekly downloads
105
-35.98%
Maintainers
1
Weekly downloads
 
Created
Source

socketjs-client

websocket / typescript

Installation

npm i -D socketjs-client

Basic Usage


// 基础使用
import Socket from 'socketjs-client';

const options = {
    url: 'ws://localhost:8099/ws', // 必填,链接的通道的地址
    heartTime: 5000, // 必填,心跳时间间隔(毫秒)
    reconnectTime: 5000, // 非必填,默认5000,重连时间间隔(毫秒)
    reconnectCount: 5 // 非必填,默认5,重连次数,-1则不限制
};
new Socket(options);

// 销毁
const socket = new Socket(options);
socket.destroy();

// 自定义回调(可额外处理业务上其他逻辑)
const options = {
    url: 'ws://localhost:8099/ws',
    heartTime: 5000,
    openCallback: () => {}, // 连接成功的回调
    closeCallback: () => {}, // 连接关闭的回调
    messageCallback: () => {}, // 收到消息的回调
    errorCallback: () => {}, // 发生错误的回调
};
new Socket(options);

传送门:Koa封装

Keywords

websocket

FAQs

Package last updated on 28 Oct 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts