forked from citizennet/purescript-httpure
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMain.purs
26 lines (22 loc) · 1.06 KB
/
Main.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
module Examples.AsyncResponse.Main where
import Prelude
import Effect.Console (log)
import HTTPure (ServerM, Request, ResponseM, serve, ok)
import Node.Encoding (Encoding(UTF8))
import Node.FS.Aff (readTextFile)
-- | The path to the file containing the response to send
filePath :: String
filePath = "./docs/Examples/AsyncResponse/Hello"
-- | Say 'hello world!' when run
sayHello :: Request -> ResponseM
sayHello = const $ readTextFile UTF8 filePath >>= ok
-- | Boot up the server
main :: ServerM
main =
serve 8080 sayHello do
log " ┌────────────────────────────────────────────┐"
log " │ Server now up on port 8080 │"
log " │ │"
log " │ To test, run: │"
log " │ > curl localhost:8080 # => hello world! │"
log " └────────────────────────────────────────────┘"