2022-05-05 15:51:43 +00:00
# HTTPurple 🪁
2017-05-25 19:12:29 +00:00
2022-05-05 15:51:43 +00:00
[![License ](https://img.shields.io/badge/license-MIT-blue.svg )](https://raw.githubusercontent.com/sigma-andex/purescript-httpurple/main/License)
2017-07-10 19:38:56 +00:00
2022-05-05 15:51:43 +00:00
A 🎨 colourful fork of the amazing [HTTPure ](https://github.com/citizennet/purescript-httpure ) http server framework.
2017-05-25 19:12:29 +00:00
## Installation
```bash
2022-05-22 11:47:58 +00:00
spago install httpurple
2017-05-25 19:12:29 +00:00
```
2017-07-10 10:17:13 +00:00
## Quick Start
```purescript
module Main where
2022-05-22 16:54:11 +00:00
import Prelude hiding ((/))
2017-07-10 10:17:13 +00:00
2022-05-22 16:54:11 +00:00
import Data.Generic.Rep (class Generic)
import HTTPurple (ServerM, ok, serve)
import Routing.Duplex (RouteDuplex', root, segment)
import Routing.Duplex.Generic (sum)
import Routing.Duplex.Generic.Syntax ((/))
data Route = Hello String
derive instance Generic Route _
route :: RouteDuplex' Route
route = root $ sum
{ "Hello": "hello" / segment
}
2017-07-10 10:17:13 +00:00
2021-11-19 06:16:35 +00:00
main :: ServerM
2022-05-22 16:54:11 +00:00
main =
serve { port: 8080 } { route, router }
2017-07-10 10:17:13 +00:00
where
2022-05-22 16:54:11 +00:00
router { route: Hello name } = ok $ "hello " < > name
```
then start the server
```bash
➜ spago run
Src Lib All
Warnings 0 0 0
Errors 0 0 0
[info] Build succeeded.
HTTPurple 🪁 up and running on http://0.0.0.0:8080
```
query your server, e.g. using [httpie ](https://httpie.io/ )
```bash
➜ http http://localhost:8080/hello/🗺
HTTP/1.1 200 OK
Connection: keep-alive
Content-Length: 10
Date: Sun, 22 May 2022 16:50:52 GMT
Keep-Alive: timeout=5
hello 🗺
2017-07-10 10:17:13 +00:00
```
2017-05-25 19:12:29 +00:00
## Documentation
2022-05-22 11:47:58 +00:00
See the [docs folder ](./docs ).
2017-10-26 20:28:47 +00:00
2017-07-10 10:17:13 +00:00
## Examples
2022-05-22 11:47:58 +00:00
HTTPurple ships with a number of [examples ](./docs/Examples ). To run an example,
2017-10-26 20:28:47 +00:00
in the project root, run:
2017-07-10 10:17:13 +00:00
2021-11-17 05:50:23 +00:00
```bash
spago -x test.dhall run --main Examples.< Example Name > .Main
2017-07-10 10:17:13 +00:00
```
2017-05-25 19:12:29 +00:00
2017-07-10 10:17:13 +00:00
Each example's startup banner will include information on routes available on
the example server.
2017-05-25 19:12:29 +00:00
## Testing
2017-07-10 10:17:13 +00:00
To run the test suite, in the project root run:
2017-05-25 19:12:29 +00:00
```bash
2022-05-05 15:51:43 +00:00
spago -x test.dhall test
2017-05-25 19:12:29 +00:00
```
## License
2022-05-22 11:47:58 +00:00
This is a fork of [HTTPure ](https://github.com/citizennet/purescript-httpure ), which is licensed under MIT. See the [original license ](./LICENSES/httpure.LICENSE ). This work is similarly licensed under [MIT ](./License ).