Dmitriy Golov
Dmitriy Golov
Hi Chad! I'm not a good programmer yet, so I can't do PR. However, I got your idea. I reasoned about the same. Your project in my opinion is very...
And a few more points. If you start to connect to a remote server in the absence of a network, errors can also not be caught without debug. They simply...
I experimented a bit and came to the following conclusion. In your test input parameter (verifyClient) set correctly, but it seemed to me you are testing is not quite the...
Ideally, I want to listen to errors by one listener such as `event.on ('error',...)` and receive all connection error events from it.
Hi Chad! I think I found the solution. Into file ReconnectingWebSocket.js (master) I add into row 109 next code: ``` this.emit("error", { err, reconnect: this._reconnect, numRetries }) ``` After that...