Go to file
2015-04-14 15:53:32 +02:00
src/Servant Add response headers. 2015-04-14 12:00:57 +02:00
test Add response headers. 2015-04-14 12:00:57 +02:00
.ghci added servant/.ghci 2014-10-31 15:49:05 +01:00
.gitignore Bumped version number, and added a .gitignore file. 2015-01-15 10:38:59 +01:00
.travis.yml Add response headers. 2015-04-14 12:00:57 +02:00
CHANGELOG.md Add response headers. 2015-04-14 12:00:57 +02:00
default.nix Add Content Types. 2015-02-18 10:25:33 +01:00
docs.sh add script for generating the docs and pushing them to github-pages 2014-12-02 18:35:11 +01:00
LICENSE tweaked copyright holder 2014-10-30 15:47:54 +08:00
README.md Enable coveralls 2015-02-19 20:32:05 +01:00
servant.cabal Add response headers. 2015-04-14 12:00:57 +02:00
servant.png polish up cabal file, add a README 2014-12-08 10:56:02 +01:00
Setup.hs beginning of a new implementation, using Soenke's typed rest 2014-10-21 15:25:34 +02:00
update-nixpkgs.sh Added update-nixpkgs.sh script. 2015-01-09 18:04:36 +01:00

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