servant-websockets icon indicating copy to clipboard operation
servant-websockets copied to clipboard

Results 7 servant-websockets issues
Sort by recently updated
recently updated
newest added

Hey, I have been using this library and noticed some inconvenient behavior when adding logging. When adding a logging middleware (any logging middleware should work), and then requesting a connection...

I don't understand the internals yet but it's clear that the `WebSocket` type is lacking some instances that `Raw` has. When trying to wrap `servant-auth`'s `Auth` combinator around `Raw`, things...

Warning: I'm fairly new to Haskell. Right now, I assume an exception of some sort is thrown because a 500 error is returned and subsequently logged when a client disconnects....

Not sure if this library is still maintained... This MR replaces the `ToJson, FromJson` requirement for the `WebSocketConduit` with [WebSocketsData](https://hackage.haskell.org/package/websockets-0.12.7.3/docs/Network-WebSockets.html#t:WebSocketsData) instead. This is a breaking change. Old code probably wont...

Pairing `Servant.Auth` authentication with a `Servant.WebSockets` endpoint yields an overlapping instances error. ```haskell • Overlapping instances for HasServer (Servant.Auth.Server.Internal.AddSetCookie.AddSetCookieApi (Servant.Auth.Server.Internal.AddSetCookie.AddSetCookieApi Servant.API.WebSocket.WebSocketPending)) '[Backend ByteString, CookieSettings, JWTSettings] arising from a use of...

This PR adds - `flake.nix` for DX - Adds extra arguments to the `WebSocketConduit` combinator to allow for Sec protocol header, and binary streaming - If a Sec protocol is...

I have, I think, implemented servant-client support for websockets. At least, this code compiles.. ``` data WebSocketClient = WebSocketClient Request instance RunClient m => HasClient m WebSocket where type Client...