Skip to content

Latest commit

 

History

History
16 lines (10 loc) · 419 Bytes

File metadata and controls

16 lines (10 loc) · 419 Bytes

ReconnectingWebSocket

A small JavaScript library that decorates the WebSocket API to provide a WebSocket connection that will automatically reconnect if the connection is dropped.

It is API compatible, so when you have:

ws = new WebSocket('ws://....');

you can replace with:

ws = new ReconnectingWebSocket('ws://....');

Minified library with gzip compression is less than 600 bytes.