barroco
barroco

Reputation: 3108

Websockets in Yesod?

I would like to create a website using Yesod and websockets (html5).

Can I use websockets with Yesod webframework?

Upvotes: 10

Views: 1722

Answers (1)

akosch
akosch

Reputation: 4396

Yes, as Thomas M. DuBuisson pointed out in the comments: a WebSocket handler is implemented in WAI which is the interface Yesod is using to communicate with it's backends. I can't comment on how well it works in it's current form, but you can download and try it from Hackage.

Upvotes: 5

Related Questions