[go-nuts] Re: Which websockets implementation

2022-12-19 Thread Jason E. Aten
gorrila/websocket is a very mature library. The current maintainer stepping down doesn't change that. I wouldn't avoid it. The very fact that its been so stable and successful for so long that there's nothing left to do on it is actually a recommendation. Nice tutorial:

[go-nuts] Re: Which websockets implementation

2022-12-19 Thread Juliusz Chroboczek
> By stdlib, you presumably mean the x/net/websocket package, Careful with this library, it's not quite correct. Websocket is a frame-oriented protocol, while x/net/websocket implements a simplistic API that does not always preserve frame boundaries. Correct implementations include: