Haskell Websocket Client?

I see many libraries and examples for writing websockets servers in Haskell, but what about clients? Are there libraries for this?

+4
source share
3 answers

The websockets package contains the websocket client as well. After starting a connection with connect you write the client code in the same way as for the server using the websockets monad.

+2
source

I would make a client using client websites. For a good library see: https://code.google.com/p/jquery-websocket/

-5
source

All Articles