socket.io-deno
socket.io-deno copied to clipboard
Socket.IO server for Deno
Needed: https://github.com/denodrivers/postgres/issues/39 (potential workaround: https://deno.land/x/postgresjs) Reference: https://socket.io/docs/v4/postgres-adapter/ Node.js impl: https://github.com/socketio/socket.io-postgres-adapter
Current implementation of socketio doesn't have `if (this.writable && this.readyState === "open")` check before sending the data. This causes server crash.  Because the code was on the...
Often the server is crashed on several cloud services like Render; I added a readyState === "open" check before sending the data. `Uncaught InvalidStateError: readyState not OPEN`
Please can you add your package to the JSR registry for Deno, it will make integrating socket.io Deno package easier. https://jsr.io/new
**Describe the bug** In the browser, this error gets thrown: ``` GET http://0.0.0.0:3000/ws/?EIO=4&transport=polling&t=juav6kqr 404 (Not Found) ``` All because a backslash is missing on the server-side parameters for the Server...