yesod/yesod-eventsource
ncaq 708648798e deleted: unneed cabal build-depends by weeder
[weeder: Detect dead code](https://hackage.haskell.org/package/weeder)

deleted depends is

* mime-mail
* wai-eventsource

I sort build-depends, because duplicate depend some exist, to sort is detect to easy.
2018-06-09 13:15:21 +09:00
..
Yesod Merge branch 'better-monads' into no-transformers 2018-01-17 06:43:52 +02:00
ChangeLog.md Version bumps and changelog updates 2018-01-15 15:57:36 +02:00
LICENSE
README.md Doc link updates 2014-12-21 15:23:52 +02:00
Setup.lhs wai-eventsource: Add a Setup.lhs file. 2012-08-19 14:59:16 -03:00
yesod-eventsource.cabal deleted: unneed cabal build-depends by weeder 2018-06-09 13:15:21 +09:00

yesod-eventsource

It's easy to send an event from an HTTP client to a server: just send an HTTP request. However, sending events from the server to the client requires more sophisticated approaches. Server-sent events are a standardized way of pushing events from the server to the client.

This package allows your Yesod application to easily send server-sent events. On the client side, you may use the EventSource JavaScript object on browsers that support it (https://developer.mozilla.org/en-US/docs/Server-sent_events/EventSource) or a polyfill for browsers that don't (we support Remy's polyfill out-of-the-box, although that requires you to explicitly support it).