Difference between revisions of "Applications and libraries/Web programming"

From HaskellWiki
Jump to navigation Jump to search
(Added the loli web framework)
m (fixed broken link)
Line 130: Line 130:
 
:modular web server and web application framework. Code at [http://github.com/sebastiaanvisser/salvia github].
 
:modular web server and web application framework. Code at [http://github.com/sebastiaanvisser/salvia github].
   
;[http://www.yesodweb.com/code.html Yesod]
+
;[http://www.yesodweb.com Yesod]
 
:Yesod is a Haskell package geared for creating [https://www.ibm.com/developerworks/webservices/library/ws-restful/ RESTful web applications]. It does not attempt to clone other popular frameworks; instead, it plays to the strengths of Haskell to help you deliver robust applications. Download from [http://hackage.haskell.org/package/yesod Hackage].
 
:Yesod is a Haskell package geared for creating [https://www.ibm.com/developerworks/webservices/library/ws-restful/ RESTful web applications]. It does not attempt to clone other popular frameworks; instead, it plays to the strengths of Haskell to help you deliver robust applications. Download from [http://hackage.haskell.org/package/yesod Hackage].
   

Revision as of 08:24, 16 September 2010

Web, HTTP, HTML and XML programming.

Applications

See also the network category.

Haskell web applications

hpaste: the Haskell pastebin
A pastebin site for Haskell running on top of HAppS. Source.
pass.net
Replaces registration, confirmation mails, and multiple passwords with a single login. at your email domain. Runs on HAppS.
Parallel web
Suggests that you travel through a parallel web with translated content. It's based on Simon Marlow's Haskell Web Server.
For Haskellers: Test the Monad Transformer in a parallel Haskell wiki.
For Germans: Search in Saxon dialect or check out the Ehmulator.
Hosted on SourceForge.

Web servers

Haskell Web Server (HWS)
Simon Marlow's concurrent Haskell web server
Modular Haskell Web Server (mohws)
A web server with a module system and support for CGI. Based on Simon Marlow's original Haskell Web Server.
Wash Server Pages
An extended version of Simon Marlow's webserver (hws) that runs WASH modules as servlets.

Site verification

GVerdi
A Rule-based System for Web site Verification

Wikis

Flippi
A wiki written in Haskell
PandocWiki
A simple wiki using HAppS and Pandoc
latexki
Subversion based Wiki for collaborative editing of LaTeX documents,
Hikij
A wiki written in Haskell and JavaScript

Content-management systems

hakyll A simple static site generator library
Hope
An extensible Haskell content management system
Not maintained since 2007; does not compile on Windows, since it depends on package unix

XML

Xtract
Xtract is a `grep'-like command-line tool for searching XML and HTML documents. Note that Xtract is now part of HaXml, listed below in Libraries.
lambdaFeed
Manuel Chakravarty's RSS 2.0 feed generator. It reads news items - in a non-XML, human-friendly format - distributed over multiple channels and renders them into the RSS 2.0 XML format understood by most news aggregators as well as into HTML for inclusion into web pages.
Pandoc
Pandoc is a Haskell library for converting from one markup format to another, and a command-line tool that uses this library. It can read markdown and (subsets of) reStructuredText, HTML, and LaTeX, and it can write markdown, reStructuredText, HTML, DocBook XML, LaTeX, ConTeXt, RTF, groff man, and S5 HTML slide shows. It also supports extensions to markdown syntax for footnotes, inline LaTeX, definition lists, strikeout, tables, and more.

CSS

Factor CSS
This tool takes a CSS stylesheet on input and produces an almost equivalent stylesheet on output, but with rulesets split, combined, and reordered to "factor out" common declarations. This helps reveal shared components. The resulting stylesheet may also be smaller.

Libraries

HTTP

HTTP and Browser Modules
A significantly RFC compliant HTTP/1.1 client implementation. This is an updated version of Warrick Gray's original version.

AJAX

HSP Clientside
HSPClientside is a library for generating client-side scripts (in JavaScript) from Haskell Server Pages (HSP).

Web frameworks

Happstack - Haskell Application Server Stack
A powerful and flexible framework for building web applications. Includes an http server, a unique persistence layer with ACID transactions and replication, support for multiple templating solutions and more. This project is a continuation of the HAppS project.
Turbinado
Turbinado is a fast, easy-to-use web application framework for Haskell.
HAppS - Haskell Application Server
The Haskell Application Server contains a monadic framework for ACID transactions, an HTTP server (outperforms Apache/PHP in informal benchmarks), an SMTP server and mail delivery agent. A DNS resolver in pure Haskell. And XML and XSLT support. See also HAppS, HAppS tutorial.
Pass.Net
Provides web sites with a simple shared web API to manage user logins, confirmation emails, forgotten passwords, etc. Most application frameworks don't have complete libraries to cover all of this functionality. Outsourcing this to Pass.net means less complexity in your application and less worrying about mail delivery, mail server integration, etc. Pass.Net is currently beta. We expect it to be fully live and reliable by the end of the year. Pass.Net is written in Haskell using HAppS and provides an easy to use Haskell library for HAppS user. Clients in python, PHP, and java coming soon.
WASH
A family of combinator libraries for programming Web applications. WASH/HTML is for generating dynamic HTML documents, combining flexibility and safety. WASH/CGI is for server-side Web scripting with sessions, compositional forms, and graphics.
Haskell Server Pages
Using Haskell as a server-side scripting language, extended to allow embedded XML/XHTML fragments in Haskell code.
HASP
HASP is a fork of Niklas Broberg's Haskell Server Pages. Changes includes:
  • support for all GHC extensions
  • front-end based on FastCGI instead of its own web server
  • minor bug fixes and performance tuning.
WebFunctions
WebFunctions is a EDSL for developing websites, implemented in Haskell. WebFunctions is a domain specific embedded language for web authoring.
HWSProxyGen
A web services proxy generator for the Haskell functional language, implemented in Haskell and C#. The final purpose is to show that Haskell and functional languages in general can be used as a viable way to the implementation of distributed components and applications, interacting with services implemented in different languages and/or platforms.
Hajax
A proposed tool to develop Ajax applications (stand-alone Web applications that execute into the browser environment) in Haskell.
Haskell Web Toolkit
A client-side (for programs running inside web browser) API layer on top of DOM, part of Yhc JavaScript backend
hvac
A transactional, declarative framework for lightweight web applications. Documentation is available at [1]. See also the announcement
Salvia
modular web server and web application framework. Code at github.
Yesod
Yesod is a Haskell package geared for creating RESTful web applications. It does not attempt to clone other popular frameworks; instead, it plays to the strengths of Haskell to help you deliver robust applications. Download from Hackage.
Snap
Snap is a simple to use web development framework. It aims for high design standards, performance and excellent documentation.
Haskell on a Horse
Haskell on a Horse (or simply HoH) is a new combinatorial web framework that makes great use of arrows. Download from hackage.
loli
A minimum web dev DSL. Download from hackage.

URI

Network.URI
Included in the network package, this is very complete URI parser implementing the syntax specified by RFC3986. Based on Graham Klyne's URI handling implementation from the W3C URI mailing list, and since updated for compatibility with both GHC and Hugs. Highly recommended for parsing URLs and any other kind of URI.

XML

HaXml: utilities for using XML with Haskell
Includes an XML parser, an HTML parser, a pretty-printer, a combinator library for generic XML transformations, and two Haskell>-<XML converters using type-based translation.
HXT: Haskell XML Toolbox
The Haskell XML Toolbox (HXT) bases on the ideas of HaXml and HXML, but introduces a more general approach based on arrows for processing XML with Haskell. The Haskell XML Toolbox uses a generic data model for representing XML documents, including the DTD subset and the document subset, in Haskell. It contains an XML parser, an HTML parser, namespaces are supported, XPath expressions can be used for selecting and transforming parts of a document. Validation can be performed with respect to DTDs and RelaxNG schema. A Getting started page describes the programming model behind HXT and gives some simple examples.
WraXML
A little wrapper to HaXML and HXT: It provides a more natural data structure for representing XML trees, and converts between HaXML or HXT and its custom tree structure. The operations on the tree need not to be of type (a -> [a]), thus using these functions is a bit more type safe. It has a custom lazy HTML parser using TagSoup and a custom lazy formatter. The library is currently much oriented to HTML rather than XML.
2LT: Two-Level Transformation
A two-level data transformation consists of a type-level transformation of a data format coupled with value-level transformations of data instances corresponding to that format. Examples of two-level data transformations include XML schema evolution coupled with document migration, and data mappings used for interoperability and persistence. A library of two-level transformation combinators. These combinators are used to compose transformation systems which, when applied to an input type, produce an output type, together with the conversion functions that mediate between input and out types. Front-ends for XML and SQL. These front-ends support (i) reading a schema, (ii) applying a two-level transformation system to produce a new schema, (iii) convert a document/database corresponding to the input schema to a document/database corresponding to the output schema, and vice versa. Referential constraints and primary key information are propagated through the schema transformation.
HSXML
A direct Haskell embedding of SXML
StaticDTD
StaticDTD: complete static validness against a DTD.

HTML

The Haskell Html Library by Andy Gill
This library is a collection of combinators, allowing your Haskell programs to generate HTML. It is available in the standard libraries as Text.Html.
XHtml library
This is a version of Text.Html, modified to produce XHTML 1.0 Transitional.
Vieux: A Nevow implementation
Vieux is a html-template system for Haskell. The basic idea is to define a xhtml template which is used to generate a xhtml document by Vieux.
Text.HTML.Chunks
Text.HTML.Chunks is a templating system inspired by the Perl HTML::Chunks module. The major change for the Haskell version is that the use of the templates is statically verified.
TagSoup
TagSoup is a library for extracting information out of unstructured HTML code, sometimes known as tag-soup. The HTML does not have to be well formed, or render properly within any particular framework. This library is for situations where the author of the HTML is not cooperating with the person trying to extract the information, but is also not trying to hide the information. The library provides a basic data type for a list of unstructured tags, a parser to convert HTML into this tag type, and useful functions and combinators for finding and extracting information.

CGI

Network.CGI
Simple Library for writing CGI programs. This version of the library is for systems with version 2.0 or greater of the network package. This includes GHC 6.6 and later. Features include:
  • Access to CGI parameters (e.g. form input) from both GET and POST requests.
  • Access to CGI environment variables.
  • Ability to set arbitrary response headers.
  • Support for HTTP cookies.
  • Efficient file upload support.
  • Wrapper functions for compatibility with the former Network.CGI module.
FastCGI library
A library for using NewCGI programs with FastCGI.

XML-RPC and CORBA

HaXR - the Haskell XML-RPC library
An XML-RPC client and server library. XML-RPC is "remote procedure calling using HTTP as the transport and XML as the encoding. XML-RPC is designed to be as simple as possible, while allowing complex data structures to be transmitted, processed and returned."
HAIFA
HAIFA is an implementation of parts of the web-service architecture in Haskell. Notably it includes an XML serializer, a partial implementation of XML Schema and SOAP/1.1.
haskell-corba
This package allows Haskell programmers to write CORBA clients and servers using the MICO open-source CORBA implementation. It defines a Haskell language mapping for CORBA, and includes an IDL compiler which generates Haskell stub and skeleton modules from IDL files.


Finance

Finance-Quote-Yahoo
Obtain quote data from finance.yahoo.com

See also

Hackage

This page contains a list of libraries and tools in a certain category. For a comprehensive list of such pages, see Applications and libraries.