The scotty package
A Haskell web framework inspired by Ruby's Sinatra, using WAI and Warp.
{-# LANGUAGE OverloadedStrings #-}
import Web.Scotty
import Data.Monoid (mconcat)
main = scotty 3000 $ do
get "/:word" $ do
beam <- param "word"
html $ mconcat ["<h1>Scotty, ", beam, " me up!</h1>"]
Scotty is the cheap and cheerful way to write RESTful, declarative web applications.
A page is as simple as defining the verb, url pattern, and Text content.
It is template-language agnostic. Anything that returns a Text value will do.
Conforms to WAI Application interface.
Uses very fast Warp webserver by default.
As for the name: Sinatra + Warp = Scotty.
[Skip to Readme]
Properties
| Versions | 0.0.1, 0.1.0, 0.2.0, 0.3.0, 0.4.0, 0.4.1, 0.4.2, 0.4.3, 0.4.4, 0.4.5, 0.4.6, 0.5.0, 0.6.0, 0.6.1, 0.6.2, 0.7.0, 0.7.1, 0.7.2, 0.7.3, 0.8.0, 0.8.1, 0.8.2, 0.9.0, 0.9.1, 0.10.0, 0.10.1, 0.10.2, 0.11.0 (info) |
|---|---|
| Change log | changelog.md |
| Dependencies | aeson (>=0.6.2.1 && <1.2), base (>=4.3.1 && <5), blaze-builder (>=0.3.3.0 && <0.5), bytestring (>=0.10.0.2 && <0.11), case-insensitive (>=1.0.0.1 && <1.3), data-default-class (>=0.0.1 && <0.2), fail, http-types (>=0.8.2 && <0.10), monad-control (>=1.0.0.3 && <1.1), mtl (>=2.1.2 && <2.3), nats (>=0.1 && <2), network (>=2.6.0.2 && <2.7), regex-compat (>=0.95.1 && <0.96), text (>=0.11.3.1 && <1.3), transformers (>=0.3.0.0 && <0.6), transformers-base (>=0.4.1 && <0.5), transformers-compat (>=0.4 && <0.6), wai (>=3.0.0 && <3.3), wai-extra (>=3.0.0 && <3.1), warp (>=3.0.0 && <3.3) [details] |
| License | BSD3 |
| Copyright | (c) 2012-Present Andrew Farmer |
| Author | Andrew Farmer <[email protected]> |
| Maintainer | Andrew Farmer <[email protected]> |
| Stability | experimental |
| Category | Web |
| Home page | https://github.com/scotty-web/scotty |
| Bug tracker | https://github.com/scotty-web/scotty/issues |
| Source repository | head: git clone git://github.com/scotty-web/scotty.git |
| Uploaded | Tue Jan 26 06:06:01 UTC 2016 by AndrewFarmer |
| Updated | Sun Jan 1 16:27:00 UTC 2017 by ryanglscott to revision 4 |
| Distributions | Fedora:0.10.0, LTSHaskell:0.11.0, NixOS:0.11.0, Stackage:0.11.0, Tumbleweed:0.11.0 |
| Downloads | 20104 total (106 in the last 30 days) |
| Votes | |
| Status | Docs available [build log] Last success reported on 2016-11-21 [all 2 reports] |
Downloads
- scotty-0.11.0.tar.gz [browse] (Cabal source package)
- Package description (included in the package)
