socket.io-deno icon indicating copy to clipboard operation
socket.io-deno copied to clipboard

Socket.IO server for Deno

Results 15 socket.io-deno issues
Sort by recently updated
recently updated
newest added

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

enhancement

Current implementation of socketio doesn't have `if (this.writable && this.readyState === "open")` check before sending the data. This causes server crash. ![Screenshot 2024-08-27 192747](https://github.com/user-attachments/assets/8f4725c4-32a8-4602-a013-0b480ca32c73) 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

enhancement

**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...