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.
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('正在重新连接')
}
- This is the URL of websocket
- Accepts
String
- This is the websocket heartbeat protocol time.
- Accepts
Number
- Default:
20000
- This is the timeout time for unreceived messages after websocket pings.
- Accepts
Number
- Default:
2000
- This is the websocket reconnect time.
- Accepts
Number
- Default:
2000
- This is the ping value for websocket transfers.
- Accepts
Number or String
- Default:
ping
WebsocketComplete.onopen = () => {
console.log('连接成功')
}
WebsocketComplete.onerror = () => {
console.log('连接失败')
}
WebsocketComplete.onclose = () => {
console.log('连接断开')
}
WebsocketComplete.onmessage = () => {
console.log('获取消息')
}
WebsocketComplete.onreconnect = () => {
console.log('重新连接')
}