bird: A simple, sinatra-inspired web framework.

[ bsd3, library, program, web ] [ Propose Tags ]

Bird is a hack-compatible framework for simple websites.


[Skip to Readme]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.0.1, 0.0.2, 0.0.3, 0.0.6, 0.0.7, 0.0.8, 0.0.9, 0.0.10, 0.0.11, 0.0.12, 0.0.13, 0.0.14, 0.0.15, 0.0.16, 0.0.17, 0.0.18, 0.0.19
Dependencies base (>=4.0 && <5), bytestring, containers, data-default (>=0.2), hack (>=2009.10.30), hack-handler-happstack, haskell98, mtl (>=1.1.0.2), parsec (>=2.1.0.1), process, rallod [details]
License BSD-3-Clause
Author Parker, Matt
Maintainer Parker, Matt <moonmaster9000@gmail.com>
Category Web
Home page http://github.com/moonmaster9000/bird
Uploaded by MattParker at 2010-08-01T21:34:11Z
Distributions
Reverse Dependencies 1 direct, 0 indirect [details]
Executables bird
Downloads 12595 total (23 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs uploaded by user
Build status unknown [no reports yet]

Readme for bird-0.0.13

[back to package description]

Bird

A sinatra-ish web framework written in haskell, riding on top of Hack.

Why?

Sinatra has a beautiful, simple, elegant syntax, but it's essentially an attempt to bring pattern matching to a language never intended for pattern matching. Why not attempt something similar in a language with not just beautiful pattern matching, but with all the declarative bells and whistles: lazy evaluation, first-class functions, currying, polymorphism?

Install

λ cabal update && cabal install bird

Note: make sure $HOME/.cabal/bin is in your PATH.

Create an app

λ bird StarWars 

Compile your app

λ cd StarWars
λ bird nest 
  [1 of 2] Compiling MyApp            ( MyApp.hs, MyApp.o )
  [2 of 2] Compiling Main             ( Main.hs, Main.o )
  Linking Main ...
λ 

Start your app (runs on port 3000)

λ bird fly

Try it out

λ curl http://localhost:3000
  Hello, Bird!

λ curl http://localhost:3000?name=Luke
  Hello, Luke

Improvise!

-- StarWars.bird.hs
import Data.String.Utils (join)

get ["droids"] = do
  body "These aren't the droids you're looking for. Move along."
  status 404

get ("force":xs) = do 
  body $ "May the force be with you " ++ (join ", " xs) ++ "!"

get [] = do
  name <- param "name"
  body $ "Greetings, " ++ (maybe "Jedi!" id name)

now recompile your app and start it flying:

λ bird nest  
λ bird fly & 

λ curl -i http://localhost:3000/force/Han/Chewie
    
    HTTP/1.1 200 OK
    Connection: close
    Content-Type: text/html
    Date: Sat, 31 Jul 2010 14:07:17 GMT
    Server: Happstack/0.5.0.2

    May the force be with you Han, Chewie!

λ curl -i http://localhost:3000/droids
    
    HTTP/1.1 404 Not Found
    Connection: close
    Content-Type: text/html
    Date: Sat, 31 Jul 2010 14:08:35 GMT
    Server: Happstack/0.5.0.2

    These aren't the droids you're looking for. Move along.

API

You have four functions to implement: get, post, put, and delete. They each accept a Bird Request.

Inside the function body, you can use the following methods (don't worry, this list will grow):

param :: String -> Maybe String
-- ex: for the request GET /droids?name=c3po, 
--     then `p <- param "name"' would bind the value `Just "c3po"' to the variable "p"

body :: String -> BirdResponder ()
-- takes a string and sets the Http Response body to whatever the string contained.

status :: Integer -> BirdResponder ()
-- takes a number, and sets the HTTP Reponse header "Status" to that number.

mime :: String -> BirdResponder ()
-- sets the mime type to whatever you provide
-- ex: get [] = body "Hello World" >> mime "text/plain"

header :: String -> String -> BirdResponder ()
-- creates/updates a header
-- ex: get [] = body "Hello World" >> header "X-Powered-By" "BIRD!"

Notes

This project is still in its infancy. Coming features:

  • logging
  • support for sending files