scottish: scotty with batteries included

[ bsd3, library, web ] [ Propose Tags ]

Scotty web framework with batteries included. For configurations/states, you don't need to hand-roll your own monads every time. Scottish will manage it for you.

{-# LANGUAGE OverloadedStrings #-}

import Web.Scottish

import Data.Monoid (mconcat)
import Data.Monoid (mconcat)
import Data.Text.Lazy (Text)
import Network.HTTP.Types.Status (notFound404)

main = scottish' 3000 $ do
  setConfig (Just "beam")

  get "/" $ do
    beam <- getConfig :: ScottishActionM' (Maybe Text) () (Maybe Text)
    html $ mconcat ["<h1>Scotty, ", fromJust beam, " me up!</h1>"]

  get "/:word" $ do
    raise notFound404
Scotty
http://hackage.haskell.org/package/scotty

[Skip to Readme]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.1.0.0, 0.1.0.1
Dependencies base (>=4.6 && <4.7), data-default (>=0.5 && <0.6), enclosed-exceptions (>=1.0 && <1.1), http-types (>=0.8 && <0.9), lens (>=3.10 && <4.1), mtl (>=2.1 && <2.2), persistent (>=1.3 && <1.4), resource-pool (>=0.2 && <0.3), scotty (>=0.6 && <0.8), stm (>=2.4 && <2.5), text (>=1.0 && <1.1), transformers (>=0.3 && <0.4), wai (>=2.0 && <2.2), warp (>=2.0.3.3 && <2.2) [details]
License BSD-3-Clause
Copyright (c) 2014 Zhang Yichao
Author Zhang Yichao <echaozh@gmail.com>
Maintainer Zhang Yichao <echaozh@gmail.com>
Category Web
Home page https://github.com/echaozh/scottish
Bug tracker https://github.com/echaozh/scottish/issues
Source repo head: git clone git://github.com/echaozh/scottish.git
Uploaded by echaozh at 2014-03-18T03:10:56Z
Distributions
Reverse Dependencies 1 direct, 0 indirect [details]
Downloads 1609 total (7 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Successful builds reported [all 1 reports]

Readme for scottish-0.1.0.1

[back to package description]

Scottish

Provides global read-only configuration and global/action-local read-write states to Scotty.

For now, scottish also provides helpers for database access, especially with persistent.