Coder Social home page Coder Social logo

websocket-chat's Introduction

WebSocket + reconnecting + heartbeat

This is a websocket based encapsulation can support heartbeat and reconnection javascript library, for some special circumstances, the link is broken, will automatically reconnect and ensure heartbeat protocol.

How to use it

If you're using NPM

npm install websocket-heartbeat-reconnection --save
或着
npm install websocket-heartbeat-reconnection -S
//将依赖加入到dependencies(生产阶段的依赖)

If you're using YARN

yarn add websocket-heartbeat-reconnection --save
或着
yarn add websocket-heartbeat-reconnection -S

import

import WebsocketComplete from 'websocket-heartbeat-reconnection'
let ws = new WebsocketComplete({
       url: 'xxxxxxx'//链接地址
})
ws.onopen = () => {
    console.log('连接成功')
}
ws.onmessage = () => {
    console.log('接受到消息')
}
ws.onreconnect = () => {
    console.log('正在重新连接')
}

Options

url

  • This is the URL of websocket
  • Accepts String

pingTime

  • This is the websocket heartbeat protocol time.
  • Accepts Number
  • Default: 20000

pongTime

  • This is the timeout time for unreceived messages after websocket pings.
  • Accepts Number
  • Default: 2000

reconnetTime

  • This is the websocket reconnect time.
  • Accepts Number
  • Default: 2000

pingChat

  • This is the ping value for websocket transfers.
  • Accepts Number or String
  • Default: ping

API

onclose

WebsocketComplete.onopen = () => {
    console.log('连接成功')
}

onerror

WebsocketComplete.onerror = () => {
    console.log('连接失败')
}

onclose

WebsocketComplete.onclose = () => {
    console.log('连接断开')
}

onmessage

WebsocketComplete.onmessage = () => {
    console.log('获取消息')
}

onreconnect

WebsocketComplete.onreconnect = () => {
    console.log('重新连接')
}

websocket-chat's People

Contributors

xuzhilin1 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.