Difference between revisions of "Applications and libraries"

From HaskellWiki
Jump to navigation Jump to search
(Removed TOC, changed sections with just a link to a bullt list of links.)
Line 27: Line 27:
 
== Categories of Libraries and Tools ==
 
== Categories of Libraries and Tools ==
   
* [[ProgramDevelopment | Program development]]
+
* [[/Program development/]]
* [[DataStructures | Data structures]]
+
* [[/Data structures/]]
* [[ExtendedHaskell | Extended Haskell]]
+
* [[/Extended Haskell/]]
* [[InterfacingOtherLanguages|Tools for interfacing with other languages]]
+
* [[/Interfacing other languages|Tools for interfacing with other languages]]
* [[RPC | Web services and Remote Procedure Call libraries]]
+
* [[/RPC|Web services and Remote Procedure Call libraries]]
* [[DatabaseInterfaces | Database Interfaces]]
+
* [[/Database interfaces/]]
* [[GUILibraries | Graphical User Interface Libraries]]
+
* [[/GUI libraries|Graphical User Interface Libraries]]
* [[Graphics]]
+
* [[/Graphics/]]
* [[WebProgramming | Web, HTML, XML]]
+
* [[/Web programming|Web, HTML, XML]]
* [[PrettyPrinting | Pretty-printer libraries]]
+
* [[/Pretty printing|Pretty-printer libraries]]
* [[CompilerTools | Compiler, parsing and lexing tools]]
+
* [[/Compiler tools|Compiler, parsing and lexing tools]]
* [[Music]]
+
* [[/Music/]]
* [[MathematicsLibraries | Numerical algorithms and mathematics]]
+
* [[/Mathematics|Numerical algorithms and mathematics]]
* [[HardwareVerification | Hardware verification]]
+
* [[/Hardware verification/]]
* [[Robots]]
+
* [[/Robots/]]
* [[GeneticProgramming | Genetic programming]]
+
* [[/Genetic programming/]]
* [[Linguistics | Linguistics and natural language processing]]
+
* [[/Linguistics|Linguistics and natural language processing]]
* [[Cryptography | Cryptography and hashing]]
+
* [[/Cryptography|Cryptography and hashing]]
* [[Games]]
+
* [[/Games/]]
   
 
== Various Libraries ==
 
== Various Libraries ==

Revision as of 21:45, 22 March 2006

The copyright status of this work is not known. Please help resolve this on the talk page.


The first place to look for data types or functions that do what you want is the Standard Prelude, then the Language and library specification (both parts of the Haskell standards documentation), then in whatever extra libraries are provided by the Haskell implementation you are using, then on the page you are looking at. If it is not here, then it may be in the archives of the Haskell Weekly News.

Search the standard libraries collection (by name or type signature) using Hoogle.

There is a mailing list for discussing issues related to libraries.

A large collection of standard hierarchical libraries are currently distributed with GHC (from version 5.04), Hugs (from Nov 2003), and nhc98 (from 1.16).

Cabal, The Common Architecture for Building Applications and Libraries, is an framework for packaging, building, and installing any tool developed in the Haskell language.

This page was intended as a comprehensive list of all Haskell libraries and tools. Because of Haskell's success, the list grew too large to be on one page, and it has now been split up. Some of the libraries and tools linked to from the library and tools pages are proof-of-concepts rather than production code. Some have no longer been maintained for a long time.

On freshmeat.net there is an alternative list of software written in Haskell. That list is currently short (for you to change that). Even more Haskell projects are documented in the community reports and in the archives of the Haskell Weekly News.

Categories of Libraries and Tools

Various Libraries

If you figure you a good category for any of these libraries, please move it to the appropriate page, or make a new page and link to it above.

hs-plugins
A library for compiling and loading plugins into a running Haskell program.
HsShellScript
A library for using Haskell for tasks which are usually done by shell scripts, e.g. command line parsing, analysing paths, etc.
hMPI
hMPI is an acronym for HaskellMPI. It is a Haskell binding conforming to MPI (Message Passing Interface) standard 1.1/1.2. The programmer is in full control over the communication between the nodes of a cluster.
popenhs
A small library, based on runProcess in the standardised posix library. It provides lazy output from subprocesses.
Expander2
Expander2 is a flexible multi-purpose workbench for rewriting, verification, constraint solving, flow graph analysis and related procedures that build up proofs or computation sequences. Moreover, tailor-made interpreters display terms as 2D structures ranging from trees and rooted graphs to tables, fractals and other turtle-system-generated pictures.
EdComb
Editor combinators allow to assemble structure editors compositionally instead of generating them from descriptions, just as parsing combinators allow to assemble parsers compositionally instead of employing parser generators to generate parsers from grammar descriptions.
Regular expression library
Inspired by the Perl regular expression library, written purely in Haskell. Also part of the GHC distribution.
Smarty(via Internet Archive since 10/06/2003)
The world's smartest i/o device for Haskell. An interface between Haskell and Squeak, a freely available Smalltalk language and environment.
fun->pdf(via Internet Archive since 10/06/2003)
An implementation of a PDF dynamic writer in Haskell.
GetOpt (This link is dead. Fix it or remove it.)
A module for GNU-/POSIX-like option handling of commandline arguments

Collections of libraries

Libraries for other languages

If you are thinking about designing a new library for Haskell, you ought to look what has been done in other languages. Here are standard library definitions for