vote up 15 vote down star
10

Inspired by this question and a recent affair, I'm wondering what's involved with Haskell web development.

  • Are there any Haskell web frameworks or template engines?
  • How would hosting a Haskell site work, are there suitable web servers?
  • Is Haskell too complex for the usual rapid development and prototyping based workflow often used in web development?
  • Are there examples of existing Haskell web applications?
flag

64% accept rate
5  
I don't think this is a duplicate. The other question is asking about learning Haskell as a first language, for doing web development. This question is specifically asking what frameworks, template engines and web servers exist. Maybe this question can be reworked? – Tom Lokhorst Aug 10 at 8:05
2  
That's exactly why I branched it off of the other question, which was mainly getting answers with recommendations to learn other languages. This question has a different focus, specifically web-focused projects in the ecosystem for Haskell. :-/ – deceze Aug 10 at 8:37
2  
Agreed. Voting to reopen. – skaffman Aug 10 at 8:49
3  
I would like this open – CiscoIPPhone Aug 10 at 8:50
@deceze I've reworked your question a bit. Specifically, I've made the title more distinct from the other question. – Tom Lokhorst Aug 10 at 8:56
show 3 more comments

3 Answers

vote up 7 vote down check

First of all, a disclaimer: I've never done any Haskell web development, so I don't speak from experience.

If you look at the Web category on Hackage, there are lots of web-related packages.

I think most Haskell web application run on a custom server (possibly using Apache's mod_proxy or IIS's Advanced Request Routing as a front end). However, there are also some FastCGI bindings.

The most prominent Haskell webserver/framework/datastorage infrastruction is Happstack, which is interesting for several reasons, the most obvious being that it stores all its state in-memory and doesn't use a relational database.

Another more recent webserver interface is hack, which I don't know much about except that the 1 minute tutorial looks interesting.

There are many more webservers/frameworks in Haskell, but these two are just the ones I know of the top of my head.

link|flag
vote up 2 vote down

First, damn if that "affair" link wasn't one of the funniest things ever!

Now, while I posted an answer on the other link, I don't think much is happening in Haskell web land. You've got Happstack and maybe a few other frameworks that don't seem to go anywhere. Then you've got FastCgi.

If your like me, then FastCgi is probably good enough for most of your needs. Most clients, I find, don't really have scale issues (and, besides, its good enough for the Ruby folks, right).

If FastCgi ain't your speed...well, perhaps yaws or lift (Erlang and Scala, respectively) are worth a look.

link|flag
vote up 3 vote down
  • Are there any Haskell web frameworks or template engines?

There are many web frameworks. Look in the Web category: http://hackage.haskell.org/packages/archive/pkg-list.html#cat:web

For templating, HStringTemplate seems to be the brand leader: http://hackage.haskell.org/package/HStringTemplate

  • How would hosting a Haskell site work, are there suitable web servers?

Statically linked binaries running their own web server (e.g. happstack-server or one of the other Haskell web servers), Haskell binaries talking to Apache, ... pretty much every combination you could think of.

  • Is Haskell too complex for the usual rapid development and prototyping based workflow often used in web development?

No. And you'll get stronger guarantees the app isn't faulty thanks to the type system.

  • Are there examples of existing Haskell web applications?

hpaste is a simple demo for happstack. Tupil.com entire business is Haskell web apps. Deutsche Bank gave a talk at CUFP last year on their internal Haskell web frameworks (based on happstack).

link|flag
Well, Tupil also does a lot of iPhone app development (in Objective C). They don't just do Haskell web apps. – Tom Lokhorst Aug 12 at 19:55
Yes, very good point, Tom. – dons Aug 12 at 21:18

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.