A client WebSocket wrapper with support for reconnection and ping/pong with a familiar API. Written in TypeScript
npm install resilient-websocket --save
import ResilientWebSocket, { WebSocketEvent } from 'resilient-websocket';
const opts = {
autoJsonify: true, // parse json message from server, stringify messages on send,
pingEnabled: true // send ping / pong messages
};
const rSock = new ResilientWebSocket(url, opts);
rSock.on(WebSocketEvent.CONNECTION, () => {
rSock.on(WebSocketEvent.MESSAGE, (message) => {
console.info('received message from the server', message);
rSock.send({ message: 'Right back at ya, buddy!' });
});
});