Go to file
Julian K. Arni d418ed4b0e Update READMEs 2015-04-20 15:48:37 +02:00
scripts Update travis.yml for merged repos 2015-04-20 13:30:11 +02:00
servant Update READMEs 2015-04-20 15:48:37 +02:00
servant-client Update READMEs 2015-04-20 15:48:37 +02:00
servant-docs Update READMEs 2015-04-20 15:48:37 +02:00
servant-jquery Update READMEs 2015-04-20 15:48:37 +02:00
servant-server Update READMEs 2015-04-20 15:48:37 +02:00
.ghci added servant/.ghci 2014-10-31 15:49:05 +01:00
.gitignore Update gitignore 2015-04-20 13:31:30 +02:00
.travis.yml Fix travis 2015-04-20 13:38:25 +02:00
README.md Update READMEs 2015-04-20 15:48:37 +02:00
servant.png Update READMEs 2015-04-20 15:48:37 +02:00

README.md

servant

Build Status Coverage Status

servant

These libraries provides a family of combinators to define webservices and automatically generate the documentation and client-side querying functions for each endpoint.

In order to minimize the dependencies depending on your needs, we provide these features under different packages.

  • servant, which contains everything you need to declare a webservice API.
  • servant-server, which lets you implement an HTTP server with handlers for each endpoint of an API.
  • servant-client, which lets you derive automatically Haskell functions that let you query each endpoint of a servant webservice.
  • servant-docs, which lets you generate API docs for your webservice.
  • servant-jquery, which lets you derive Javascript functions (based on jquery) to query your API's endpoints, in the same spirit as servant-client.

Getting started

We've written a Getting Started guide that introduces the core types and features of servant. After this article, you should be able to write your first servant webservices, learning the rest from the haddocks' examples.

Repositories and Haddocks