Go to file
Alp Mestanogullari 55eb020d10 polish up cabal file, add a README 2014-12-08 10:56:02 +01:00
example first shot at splitting servant into servant, servant-client and servant-docs 2014-11-27 18:28:01 +01:00
src fix build error for servant's spec 2014-11-27 18:50:29 +01:00
test fix build error for servant's spec 2014-11-27 18:50:29 +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
LICENSE tweaked copyright holder 2014-10-30 15:47:54 +08:00
README.md 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
docs.sh add script for generating the docs and pushing them to github-pages 2014-12-02 18:35:11 +01:00
servant.cabal polish up cabal file, add a README 2014-12-08 10:56:02 +01:00
servant.png polish up cabal file, add a README 2014-12-08 10:56:02 +01:00

README.md

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 and implement an HTTP server with handlers for each endpoint.
  • 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