
Research
Security News
The Growing Risk of Malicious Browser Extensions
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
socketjs-client
Advanced tools
websocket / typescript
npm i -D socketjs-client
// 基础使用
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);
FAQs
websocket hanlder for web
The npm package socketjs-client receives a total of 100 weekly downloads. As such, socketjs-client popularity was classified as not popular.
We found that socketjs-client demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Research
Security News
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
Research
Security News
An in-depth analysis of credential stealers, crypto drainers, cryptojackers, and clipboard hijackers abusing open source package registries to compromise Web3 development environments.
Security News
pnpm 10.12.1 introduces a global virtual store for faster installs and new options for managing dependencies with version catalogs.