Go to file
2014-12-12 10:39:08 +01:00
src/Servant make ReqBody kind polymorphic (for a test) 2014-12-10 16:31:40 +01:00
test add split server-side bits into servant-server 2014-12-10 16:31:40 +01:00
.ghci added servant/.ghci 2014-10-31 15:49:05 +01:00
.travis.yml travis: build with ghc 7.8 2014-12-02 17:45:24 +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 update README to refflect the servant/servant-server split 2014-12-12 10:39:08 +01:00
servant.cabal add split server-side bits into servant-server 2014-12-10 16:31:40 +01: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
TODO.md add a TODO 2014-12-05 11:39:25 +01:00

servant

Build 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