我在Haskell中看到了许多用于编写websockets 服务器的库和示例,但客户端呢?周围有没有图书馆?
答案 0 :(得分:4)
websockets包支持客户端应用程序
http://hackage.haskell.org/packages/archive/websockets/0.7.0.0/doc/html/Network-WebSockets.html#g:12
参见示例:
https://github.com/jaspervdj/websockets/blob/master/example/client.hs
答案 1 :(得分:2)
websockets
包也包含websocket client。在启动与connect
的连接后,您可以使用WebSockets
monad编写客户端代码,就像使用服务器一样。
答案 2 :(得分:-6)
我会使用客户端websockets来做客户端。有关一个好的库,请参阅:https://code.google.com/p/jquery-websocket/