Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/leptonyu/yam
Production Haskell in writing Web Service
https://github.com/leptonyu/yam
haskell production servant
Last synced: 3 months ago
JSON representation
Production Haskell in writing Web Service
- Host: GitHub
- URL: https://github.com/leptonyu/yam
- Owner: leptonyu
- Archived: true
- Created: 2018-01-10T10:47:04.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-07-30T12:05:28.000Z (over 5 years ago)
- Last Synced: 2024-05-22T01:21:39.246Z (7 months ago)
- Topics: haskell, production, servant
- Language: Haskell
- Homepage:
- Size: 351 KB
- Stars: 4
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Archived due to [鬼谷子](https://github.com/leptonyu/guiguzi)
| package name | version |
|-|-|
| yam |[![Hackage](https://img.shields.io/hackage/v/yam.svg)](https://hackage.haskell.org/package/yam)|
| yam-datasource |[![Hackage](https://img.shields.io/hackage/v/yam-datasource.svg)](https://hackage.haskell.org/package/yam-datasource)|
| yam-redis |[![Hackage](https://img.shields.io/hackage/v/yam-redis.svg)](https://hackage.haskell.org/package/yam-redis)|[![stackage LTS package](http://stackage.org/package/yam/badge/lts)](http://stackage.org/lts/package/yam)
[![stackage Nightly package](http://stackage.org/package/yam/badge/nightly)](http://stackage.org/nightly/package/yam)
[![Build Status](https://travis-ci.org/leptonyu/yam.svg?branch=master)](https://travis-ci.org/leptonyu/yam)Servant based Web Wrapper for Production in Haskell.
```Haskell
import Salak.Yaml
import Servant
import Yam
import Data.Versiontype API = "hello" :> Get '[PlainText] Text
service :: ServerT API AppSimple
service = return "world"main = start "app" YAML (makeVersion []) (return emptyAM) (Proxy @API) (return service)
```