socketio
socketio copied to clipboard
A Modern SocketIO library for go
  The connection was immediately disconnected 
Hello github.com/njones/socketio users (and future users), As my commit history and issue updates indicate, I took an unannounced break from the project over the past year due to burnout. I...
how to close the connection in server side?
Hi, It seems like concurrent handling of events on the same socket is not working. If a specific client sends multiple events to the server, events are only handled if...
Hello, I'm trying to use this package for different namespaces Here's the working version using `github.com/googollee/go-socket.io` ```go func main() { server := socketio.NewServer(&engineio.Options{ Transports: []transport.Transport{ &polling.Transport{ CheckOrigin: allowOriginFunc, }, &websocket.Transport{...
Hi Nika! So, I'm running some load tests here and noticed the server is not releasing allocated memory. Here is what I found: 1. After running the load test, I...
Hi, I noticed that sometimes when my application (which implements the socketio server) is running for some time, I experience a panic which states the following: ``` panic: send on...
Currently the SocketID has a generated prefix from one source. In order to allow custom prefixes the ID should contain two parts the ID and the Prefix. This way there...
Upon exploring the library, I noticed that the OnDisconnect event does not trigger when closing the browser tab of an active socket connection. However calling `socket.disconnect()` on client side triggers...
# **Proposal:** Adding a SocketIO Client **Author(s):** Nika Jones (@njones) **Last updated:** 2022-Aug-27 ## Abstract The SocketIO library should have a client developed alongside the server. This will allow backend...