Popularity
3.1
Declining
Activity
0.0
Stable
8
2
0

Monthly Downloads: 23
Programming language: Haskell
License: MIT License
Tags: Web    

growler alternatives and similar packages

Based on the "Web" category.
Alternatively, view growler alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of growler or a related project?

Add another 'Web' Package

README

Growler

Growler provides a very similar interface to scotty, with slight tweaks for performance and a few feature tradeoffs. Growler provides the ability to abort actions (handlers) with arbitrary responses, not just in the event of redirects or raising errors. Growler avoids coercing everything into lazy Text values and reading the whole request body into memory. It also eliminates the ability to abort the handler and have another handler handle the request instead (Scotty's next function).

API is still in flux, so use at your own risk. Pull requests / issues are welcome.

Examples

Hello World

{-# LANGUAGE OverloadedStrings #-}

import Web.Growler
import Data.Monoid ((<>))

main = growl id defaultConfig $ do
  get "/" $ text "Hello, World!"
  get "/:name" $ do
    name <- param "name"
    text ("Hello, " <> name <> "!")