servant-yaml: Servant support for yaml
Downloads
- servant-yaml-0.1.0.1.tar.gz [browse] (Cabal source package)
- Package description (revised from the package)
Note: This package has metadata revisions in the cabal description newer than included in the tarball. To unpack the package including the revisions, use 'cabal get'.
Maintainer's Corner
For package maintainers and hackage trustees
Candidates
| Versions [RSS] | 0.1.0.0, 0.1.0.1 |
|---|---|
| Dependencies | base (>=4.9 && <4.14), bytestring (>=0.10.8.1 && <0.11), http-media (>=0.7.1.3 && <0.9), servant (>=0.15 && <0.18), yaml (>=0.11 && <0.12) [details] |
| Tested with | ghc ==8.0.2 || ==8.2.2 || ==8.4.4 || ==8.6.5 || ==8.8.1 |
| License | BSD-3-Clause |
| Author | Oleg Grenrus <oleg.grenrus@iki.fi> |
| Maintainer | Oleg Grenrus <oleg.grenrus@iki.fi> |
| Uploaded | by phadej at 2018年11月13日T23:31:36Z |
| Revised | Revision 4 made by phadej at 2020年01月23日T20:11:14Z |
| Category | Web, Servant |
| Home page | https://github.com/haskell-servant/servant-yaml#readme |
| Bug tracker | https://github.com/haskell-servant/servant-yaml/issues |
| Source repo | head: git clone https://github.com/haskell-servant/servant-yaml |
| Distributions | |
| Reverse Dependencies | 1 direct, 0 indirect [details] |
| Downloads | 4544 total (4 in the last 30 days) |
| Rating | (no votes yet) [estimated by Bayesian average] |
| Your Rating |
|
| Status | Docs available [build log] Last success reported on 2018年11月13日 [all 1 reports] |
Readme for servant-yaml-0.1.0.1
[back to package description]servant-yaml
Servant support for yaml
Build Status Hackage Stackage LTS 2 Stackage LTS 3 Stackage Nightly
Example
Check example/Main.hs for an example:
curl -i -H "Content-Type: application/x-yaml" -H "Accept: application/x-yaml" -X POST --data-binary @example.yaml 'localhost:8000/foo'
$ curl -i localhost:8000
HTTP/1.1 200 OK
Transfer-Encoding: chunked
Date: 2015年11月01日 08:10:01 GMT
Server: Warp/3.0.13.1
Content-Type: application/x-yaml
foo: 42
bar: Yaml!
$ curl -i -H "Accept: application/json" localhost:8000
HTTP/1.1 200 OK
Transfer-Encoding: chunked
Date: 2015年11月01日 08:14:08 GMT
Server: Warp/3.0.13.1
Content-Type: application/json
{"foo":42,"bar":"Yaml!"
$ cat example.yaml
bar: "JSON?"
foo: 1337
$ curl -i -H "Content-Type: application/x-yaml" -H "Accept: application/x-yaml" -X POST --data-binary @example.yaml 'localhost:8000/foo'
HTTP/1.1 201 Created
Transfer-Encoding: chunked
Date: 2015年11月01日 08:15:21 GMT
Server: Warp/3.0.13.1
Content-Type: application/x-yaml
foo: 1337
bar: JSON?