https://github.com/plsyssec/frankie
Simple well-typed Haskell webserver and routing framework
https://github.com/plsyssec/frankie
Last synced: 9 months ago
JSON representation
Simple well-typed Haskell webserver and routing framework
- Host: GitHub
- URL: https://github.com/plsyssec/frankie
- Owner: PLSysSec
- License: mit
- Created: 2019-09-12T04:59:35.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2020-07-13T18:38:16.000Z (almost 6 years ago)
- Last Synced: 2025-06-02T10:04:15.332Z (about 1 year ago)
- Language: Haskell
- Homepage:
- Size: 72.3 KB
- Stars: 1
- Watchers: 8
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://travis-ci.com/PLSysSec/frankie)
Frankie is a simple Web server and routing framework. The server lets your run
your app in your custom monad, not just IO. The framework is
configuration-driven and ensure that controllers are well-typed (vs. frameworks
like Sinatra where you'd have to parse URL query parameters).
Below is a simple illustrative example (at least until this README is actually written).
There are two (very simple) example apps, which can be built & run with
```console
$ stack build --flag frankie:build-examples
$ stack exec example-hello-world # Located at examples/HelloWorld.hs
$ stack exec example-hello-frankie # Located at examples/HelloFrankie.hs
```