3. Scotty 概要
Ruby の Sinatra ライクな Web Framework
‘Scotty is the cheap and cheerful way to write RESTful,
declarative web applications.’
(引用元 → http://hackage.haskell.org/package/scotty)
4. 基本的な書き方
書式: {method} {route-pattern} {したいこと}
get
"/" $
file "/var/www/simple-webapp/index.html"
post "/memos" $ do
data <- jsonData
memo <- saveMemo data
json memo
delete "/memos/:id" $ do
mid <- param "id"
deleteMemo mid
noContent