-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathNodeStreamResponse.purs
44 lines (40 loc) · 1.32 KB
/
NodeStreamResponse.purs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
-- This example shows how you can stream responses asynchronously.
--
-- Test it out like so:
-- $ curl -N http://localhost:3000
module Examples.NodeStreamResponse where
import Prelude
import Control.Monad.Indexed.Qualified as Ix
import Control.Monad.Indexed ((:*>))
import Effect.Aff as Aff
import Effect.Aff.Class (class MonadAff, liftAff)
import Effect (Effect)
import Data.Int (toNumber)
import Data.Newtype (wrap)
import Data.Traversable (traverse_)
import Data.Tuple (Tuple(..))
import Hyper.Middleware (Middleware, lift')
import Hyper.Node.Server (defaultOptions, runServer, writeString)
import Hyper.Response (closeHeaders, end, send, writeStatus)
import Hyper.Status (statusOK)
import Node.Encoding (Encoding(..))
delay :: forall m c. MonadAff m => Int -> Middleware m c c Unit
delay n = lift' (liftAff (Aff.delay (wrap <<< toNumber $ n) *> pure unit))
main :: Effect Unit
main =
let
-- These messages are streamed one at a time, regardless of their individual
-- delays, i.e. they're sequenced.
streamMessages =
traverse_
(\(Tuple ms s) -> delay ms :*> send (writeString UTF8 s))
[ Tuple 2000 "Hello\n"
, Tuple 1000 "Streaming\n"
, Tuple 500 "Hyper\n"
]
app = Ix.do
writeStatus statusOK
closeHeaders
streamMessages
end
in runServer defaultOptions {} app