Applications and libraries: Difference between revisions
SimonMichael (talk | contribs) No edit summary |
SimonMichael (talk | contribs) No edit summary |
||
Line 20: | Line 20: | ||
[[Cabal]], The Common Architecture for Building Applications and Libraries, is an framework for packaging, building, and installing any tool developed in the Haskell language. See also the | [[Cabal]], The Common Architecture for Building Applications and Libraries, is an framework for packaging, building, and installing any tool developed in the Haskell language. See also the | ||
[http://hackage.haskell.org/ModHackage/Hackage.hs?action=home Hackage database]. | |||
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. | 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. |
Revision as of 13:38, 26 June 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. See also the Hackage database.
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. Google knows about some rare things not documented anywhere else.
Categories of Libraries and Tools
- Program development
- Data structures
- Extended Haskell
- Tools for interfacing with other languages
- Operating systems and systems programming
- Network
- Concurrency and parallelism
- Database interfaces
- Graphical User Interface Libraries
- Graphics
- Web, HTML, XML
- Parsing, lexing and regular expressions
- Pretty-printer libraries
- Editors
- Numerical algorithms and mathematics
- Theorem provers
- Hardware verification
- Robots
- Audio, music and sound
- Genetic programming
- Linguistics and natural language processing
- Cryptography and hashing
- Games
Collections of libraries
- Andrew Rock's library of useful modules
- Libraries by Ralf Hinze for data structures, sorting, searching, parsing, pretty printing, numerical algorithms, monads, etc.
- Ian Lynagh's Haskell libraries
- Reid Consulting's Libraries and Programs CMI, TSL, Knit, Greencard, HGL, HSX11, HSWin32
- Sven's Haskell Libaries (This link is dead. Fix it or remove it.) for interfacing to DaVinci, HTML/Cgi, OpenGL; a module for option handling, a Haskell parser, a binary library.
- Collection of Haskell modules (since 10/06/2003: via Internet Archive) by Jan Skibinski, Numeric Quest Inc.
- Ralf Hinze maintains a huge Haskell software page
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
Here are proposals for the module name space layout, that can be used to guide the construction of new libraries.