Difference between revisions of "Web/Comparison of Happstack, Snap and Yesod"

From HaskellWiki
< Web
Jump to navigation Jump to search
(First commit.)
 
m (Removed bloggy text.)
Line 1: Line 1:
 
Still fixing the formatting broken stuff from conversion to wiki from markdown. I will outline planned sections in headings momentarily.
 
Still fixing the formatting broken stuff from conversion to wiki from markdown. I will outline planned sections in headings momentarily.
   
There is no existing complete comparison of Happstack, Snap and Yesod. Such a thing helps people to choose and feel they've made a well-founded decision. I need this too,<ref>I've decided rather than just writing what I need, as I usually do, I would try to use a framework for my next project.
+
There is no existing complete comparison of Happstack, Snap and Yesod. Such a thing helps people to choose and feel they've made a well-founded decision.
</ref> so I thought I'd write it.
 
   
 
== The home page ==
 
== The home page ==

Revision as of 20:27, 11 January 2012

Still fixing the formatting broken stuff from conversion to wiki from markdown. I will outline planned sections in headings momentarily.

There is no existing complete comparison of Happstack, Snap and Yesod. Such a thing helps people to choose and feel they've made a well-founded decision.

The home page

I'll start with the web sites at first impression.

Maintainers

Next, the main maintainers of the projects is handy to know:

  • Happstack — There is no link on the homepage about maintainers, but I garnered Jeremy Shaw,[1] aka stepcut. I can't tell if there are any more maintainers, the darcs history doesn't show any major contributors. A list of contributors, I suppose, can be seen on the patch-tag homepage, I'm not going to bother trying to convert usernames to real names.[2]
  • Snap — Many are listed as ‘contributors’ on the about page, but Gregory Collins and Doug Beardsley are certainly maintainers, the rest I'm not sure, may be just contributors;[3] the site doesn't distinguish.
  • Yesod — Michael Snoyman, Greg Weber,[4] there are other contributors listed, some of which might be maintainers.[5]

Communities

Documentation

There is roughly the same set of documentation for each, varying in side and detail, with a quickstart for each, more complete tutorials, and haddock API documentation.

Use Cases

It's interesting to know who is using these frameworks.

Happstack

Snap

Not found any yet.

  • hpaste is written with Snap but that's my own so it doesn't count.

Yesod

Massive Tactical

Massive Tactical are using Yesod, but their web site is down, so it's hard to learn anything from that. However, the testimonial by Simon Cheung is interesting:

In the beginning, I found Hamlet and Cassius to be quite strange. After some time I found it a lot easier to use. The Hamlet makes rapid design easier: less typing and no worrying about tag mismatches. It was also really good to only have to do something once with widgets!

It took me a bit longer to get to grips with haskell: when I get told that "customers is a [(CustomerId, Maybe Customer)]" it took me a while to work out what to do with it :) After I'd learned basics it became a lot easier and my work was a lot simpler.

Working at Massive started off quite scary: totally different development than what Im used to! After having worked on two projects using Yesod I will wish they are all this easy!

Hachicode is using Yesod, quoth “Nubis”, presumbly a developer:

Between our server and client we use C, C++, Java, Objective-C, Javascript and Haskell. We've got weird runtime errors and sometimes even race conditions in all of them except Haskell. Yesod is clearly far behind rails and django in terms of convenience, but already has a much stronger foundation and the potential to catch up quick without giving that up.

Miscellaneous

Repositories and Installation

I am running Ubuntu 10.04.

Happstack

Installed from the happstack package from Hackage, or can be retrieved via the patch-tag Darcs repository. Info from the Download page.

$ ghc --version
The Glorious Glasgow Haskell Compilation System, version 6.12.3
$ cabal --version
cabal-install version 0.10.2
using version 1.10.2.0 of the Cabal library 
$ cabal-dev install happstack
…
Registering happstack-6.0.5...

real    2m13.240s
user    1m38.886s
sys 0m7.588s

Installs fine in GHC 6.12.3 in a couple of minutes.

Snap

The web site Download page advises to install the snap package from Hackage:

$ ghc --version
The Glorious Glasgow Haskell Compilation System, version 6.12.3
$ cabal --version
cabal-install version 0.10.2
using version 1.10.2.0 of the Cabal library 
$ cabal-dev install snap
…
Registering snap-0.7...

real    5m1.105s
user    4m24.369s
sys 0m15.389s

Installs fine in GHC 6.12.3 in a couple of minutes.

Yesod

The web site advises to install the yesod package from Hackage.

$ ghc --version
The Glorious Glasgow Haskell Compilation System, version 6.12.3
$ cabal --version
cabal-install version 0.10.2
using version 1.10.2.0 of the Cabal library 
$ time cabal-dev install yesod
Resolving dependencies...
cabal: cannot configure conduit-0.0.1.1. It requires base >=4.3 &&
<5 For the dependency on base >=4.3 && <5 there are these
packages: base-4.3.0.0, base-4.3.1.0, base-4.4.0.0 and
base-4.4.1.0. However none of them are available.

This was anticipated in the documentation,[7] so the behaviour is expected.

chris@cn-done:~/yesod$ export PATH=/opt/ghc/7.0.4/bin/:$PATH
chris@cn-done:~/yesod$ ghc --version
The Glorious Glasgow Haskell Compilation System, version 7.0.4
chris@cn-done:~/yesod$ cabal install Cabal cabal-install
--bindir=/opt/ghc/7.0.4/bin
…
Linking dist/build/cabal/cabal ...
Installing executable(s) in /opt/ghc/7.0.4/bin
chris@cn-done:~/yesod$ cabal --version
cabal-install version 0.10.2
using version 1.10.2.0 of the Cabal library 

So I'm now on 7.0.4 with the latest cabal installed for 7.0.4. Proceeding should work:

$ time cabal-dev install yesod
…
Registering yesod-0.9.4.1...

real    8m55.781s
user    7m2.446s
sys 0m21.809s

Installs with no problems as the guide suggests.

  1. Figured out from here, “Maintainer of Happstack, the Haskell web application framework: http://www.happstack.com/”
  2. Lemmih, Saizan, alexjacobson, creighton, mightybyte, stepcut, tphyahoo.
  3. Shu-yu Guo, James Sanders, Carl Howells, Shane O'Brien, Ozgun Ataman, Chris Smith, Jurriën Stutterheim.
  4. Garnered from the contributors page, via Community.
  5. Felipe Lessa, Patrick Brisbin, Luite Stegeman, Hiromi ISHII, Kazu Yamamoto. See the page for past contributors.
  6. Which, due to the large proportion of Yesod-related questions, has essentially become ‘yesod-devel’.
  7. “If you want to install yesod painlessly, get ghc >= 7.” from the install help wiki page.