runebak / yesod

A RESTful Haskell web framework built on WAI.

Home Page:http://www.yesodweb.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

A next generation web framework using the Haskell programming language, featuring:

  • safety & security guaranteed at compile time
  • performance
    • fast, compiled code
    • a greater concurrent load than any other web application server
  • developer productivity: tools for all your basic web development needs

Create a new project after installing

yesod init

Installing the latest development version from github

Yesod is built upon many smaller packages, all of which can be installed with:

cabal update

for repo in hamlet persistent wai yesod; do
  git clone http://github.com/yesodweb/$repo
  (
    cd $repo
    git submodule update --init
    ./script/install
  )
done

About

A RESTful Haskell web framework built on WAI.

http://www.yesodweb.com/


Languages

Language:Haskell 99.1%Language:Shell 0.6%Language:JavaScript 0.2%Language:C 0.0%