servant/servant-client
Oleg Grenrus f536c90fa5 Disable flawed streams in constant memory test 2018-07-05 23:39:02 +03:00
..
include less OverlappingInstances noise 2016-01-04 13:09:11 -05:00
src/Servant Apply stylish-haskell on all modules 2018-06-29 23:36:39 +03:00
test Disable flawed streams in constant memory test 2018-07-05 23:39:02 +03:00
CHANGELOG.md Add changelogs to other packages 2018-06-19 21:23:28 +03:00
LICENSE Change copyright to servant contributors 2016-01-20 16:58:29 +01:00
README.lhs servant-client: update README.md and test it 2018-04-18 14:18:41 +01:00
README.md servant-client: update README.md and test it 2018-04-18 14:18:41 +01:00
Setup.hs stylish haskell changes 2015-08-18 00:07:12 +02:00
docs.sh prepare merge 2015-04-20 11:15:58 +02:00
servant-client.cabal Default-Language in servant-client 2018-06-19 21:23:35 +03:00
tinc.yaml Use tinc on travis 2015-11-05 09:32:13 +08:00

README.md

servant-client

servant

This library lets you automatically derive Haskell functions that let you query each endpoint of a servant webservice.

Example

{-# LANGUAGE DataKinds #-}
{-# LANGUAGE TypeOperators #-}

import Data.Proxy
import Data.Text
import Network.HTTP.Client (newManager, defaultManagerSettings)
import Servant.API
import Servant.Client


type Book = Text

type MyApi = "books" :> Get '[JSON] [Book] -- GET /books
        :<|> "books" :> ReqBody '[JSON] Book :> Post '[JSON] Book -- POST /books

myApi :: Proxy MyApi
myApi = Proxy

-- 'client' allows you to produce operations to query an API from a client.
postNewBook :: Book -> ClientM Book
getAllBooks :: ClientM [Book]
(getAllBooks :<|> postNewBook) = client myApi


main :: IO ()
main = do
  manager' <- newManager defaultManagerSettings
  res <- runClientM getAllBooks (mkClientEnv manager' (BaseUrl Http "localhost" 8081 ""))
  case res of
    Left err -> putStrLn $ "Error: " ++ show err
    Right books -> print books