waitra: A very simple Wai router

[ library, mit, web ] [ Propose Tags ]

Waitra is a very simple router. It's useful for writing simple API web-services, when you don't want to use the whole Yesod stack.

echoRoute :: Route
echoRoute = routeGet (echoApp <$ string "/api/echo/" <*> many anySym)
 where echoApp msg _req respond = respond $ responseLBS status200 [] (fromString msg)

app :: Application
app = waitraMiddleware [echoRoute] $ staticApp $ embeddedSettings $(mkRecursiveEmbedded "static")

[Skip to Readme]

Flags

Manual Flags

NameDescriptionDefault
examples

Build example executables

Disabled

Use -f <flag> to enable a flag, or -f -<flag> to disable that flag. More info

Downloads

Note: This package has metadata revisions in the cabal description newer than included in the tarball. To unpack the package including the revisions, use 'cabal get'.

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.0.1.0, 0.0.2.0, 0.0.3.0, 0.0.4.0
Dependencies aeson (>=0.8.0.2), base (>=4.6 && <4.10), bytestring (>=0.10.4.0), directory (>=1.2.1.0), filepath (>=1.3.0.2), http-types (>=0.8.6), regex-applicative (>=0.3.1), template-haskell, text (>=1.1.0.0), wai (>=3.0.2.3), wai-app-static (>=3.0), waitra, warp [details]
License MIT
Copyright (c) 2015 Futurice
Author Oleg Grenrus <oleg.grenrus@iki.fi>
Maintainer Oleg Grenrus <oleg.grenrus@iki.fi>
Revised Revision 2 made by phadej at 2016-06-03T17:18:23Z
Category Web
Home page https://github.com/futurice/waitra
Source repo head: git clone git://github.com/futurice/waitra.git
Uploaded by phadej at 2015-09-01T05:15:30Z
Distributions
Reverse Dependencies 1 direct, 0 indirect [details]
Executables waitra-example
Downloads 3283 total (13 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2015-09-01 [all 1 reports]

Readme for waitra-0.0.4.0

[back to package description]

Waitra

Waitra is a very simple router. It's useful for writing simple API web-services, when you don't want to use the whole Yesod stack.

Build Status

Synopsis

echoRoute :: Route
echoRoute = routeGet (echoApp <$ string "/api/echo/" <*> many anySym)
  where echoApp msg _req respond = respond $ responseLBS status200 [] (fromString msg)

app :: Application
app = waitraMiddleware [echoRoute] $ staticApp $ embeddedSettings $(mkRecursiveEmbedded "static")

Documentation

Documentation is available at hackage.