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
Learn more: http://yesodweb.com/
Installation: http://www.yesodweb.com/page/five-minutes
yesod init
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
./scripts/install
)
done