Web

From HaskellWiki
Revision as of 19:40, 17 February 2011 by GregWeber (talk | contribs) (move Salvia to other, remove number)
Jump to navigation Jump to search
Haskell Web Development

Software:
Servers - Libraries - Frameworks
Deploy - Cloud
Interfaces to frameworks
Databases and Persistence
Testing and Verification
Content Management

Community & Research:
Forums and Discussion
Literature (research, talks and blogs)
Existing Haskell web applications
Ongoing projects and ideas

The web development community in Haskell has recently had a large boost in activity, resulting in a plethora of choices in libraries. As usual, a breadth of options is a double edged sword: you can choose the tools more to your style, but it is harder to find quality tools.

Rather than one framework to rule them all, Haskell provides several options. On this page we show a non-inclusive list of options to help the Haskell web programming newbie find which libraries and frameworks work together.

Please join us on the mailing lists to discuss web development in Haskell.

Content on this page should be merged with Web/Frameworks

Happstack

Happstack is a complete web framework. It is organized as a suite of libraries including:

  • happstack-server: an integrated HTTP server, routing combinators, fileserving, etc
  • happstack-data: datatype serialization and migration support
  • happstack-state (aka macid): an (optional) powerful NoSQL ACID storage system with native support for Haskell types and replication

It also includes integration with many 3rd party libraries including:

Happstack is primarily intended for use on VPS or dedicated hosts, but can be used with CGI via FastCGI or hack.

See the Happstack Home Page for more information and to learn how to get support via IRC and mailing lists.

Yesod + Warp

Yesod is a full-featured web framework. It takes a modular approach to development, so many parts of the framework such as Hamlet and Persistent are available as standalone packages. However, put together, Yesod provides you with solutions for templating, routing, persistence, sessions, JSON, authentication/authorization, and more. Yesod's major guiding principle is type safety: if your application compiles, it works.

Yesod is very well documented through the Yesod book. Work is being done on an constant basis to improve the documentation status, but the first ten chapters (covering all the basics) are already done, so it should be easy to get started.

Yesod is built on WAI, or the Web Application Interface. This is similar to WSGI in Python or Rack in Ruby. It provides a single interface that all applications can target and work on multiple backends. Backends exist for CGI, FastCGI, SCGI, development server (auto-recompile) and even a Webkit-powered desktop version.

But the premier backend is Warp: a very simple web server which, at the time of writing, is the fastest Haskell has to offer. You can read more in its release announcement and see some followup benchmarks. Warp is already powering Yesod; some other major players that are planning a move are Hoogle and Happstack.

You can see a list of Yesod-powered sites and packages, or check out the source code for Haskellers. Most discussions for Yesod take place on the web-devel list, so feel free to join in and ask any questions you have, the Yesod community is very beginner-friendly.

(Fast)CGI + WAI + Yesod

This option is similar to Option 2 except we use a webserver like nginx, lighttpd, or Apache. These servers would communicate with your web applications using CGI or FastCGI. See wai-handler-fastcgi for a library which connects FastCGI with the WAI interface. A search for wai-handler shows the various options available. See the deployment chapter of the Yesod book to see how to configure the various servers and FastCGI to host WAI applications.


Snap + custom code + libraries

In this option, you would write your website to directly use the Snap server. Instead of using an interface like WAI, you would receive requests and generate responses directly to the snap server. Look through the Snap documentation to get started using this option. There are a plethora of libraries to help you:

(Fast)CGI + custom code + libraries

This is very similar to the previous option, but using CGI or FastCGI to talk to another web server. See this tutorial on simple CGI programming for a simple example.

Other

Something not listed on this page. There are several web frameworks or libraries in various stages of development like Salvia, Lemmachine, Haskell on a Horse, mohws, loli, plus probably others which are not listed.

There are also many inactive frameworks to draw inspiration from Web/Frameworks/Inactive