4319cffed6
* cache `body` processing results (Buffer, String) with `Ref` * add `readBodyAs(Buffer|Stream|String)` for accessing `body` * fix tests * add tests for `readBodyAsBuffer` and `readBodyAsString` * move Body to HTTPure.Body and rename it to RequestBody * add HTTPure.Body.toStream * consolidate `readBodyAs(Buffer|String)` into `to(Buffer|String)` and move `Ref` from top level `body` down to `buffer` and `string` fields * fix tests * import constructors explicitly * revert changes This reverts commit e53188c3e6d74ca00d3d891829ca91f0803b870b. * update `Body.read` to return `RequestBody` |
||
---|---|---|
.github/workflows | ||
docs | ||
src | ||
test | ||
.envrc | ||
.gitignore | ||
.tidyrc.json | ||
bower.json | ||
Contributing.md | ||
History.md | ||
License | ||
packages.dhall | ||
Readme.md | ||
Releasing.md | ||
shell.nix | ||
sources.json | ||
sources.nix | ||
spago.dhall | ||
test.dhall |
HTTPure
A purescript HTTP server framework.
HTTPure is:
- Well-tested (see our tests)
- Well-documented (see our documentation)
- Built to take advantage of PureScript language features for flexible and extensible routing
- Pure (no
set
,get
,use
, etc)
Status
This project is currently fairly stable, but has not reached it's 1.0 release yet. You can track what's left before it gets there by looking at our roadmap. The API signatures are mostly stable, but are subject to change before the 1.0 release if there's a good reason to change them.
If you'd like to help us get to 1.0 quicker, please contribute! To get started, check our contributing guide.
Installation
spago install httpure
Quick Start
module Main where
import Prelude
import Effect.Console (log)
import HTTPure (ServerM, serve, ok)
main :: ServerM
main = serve 8080 router $ log "Server now up on port 8080"
where
router _ = ok "hello world!"
Documentation
Module documentation is published on Pursuit.
You can also take a look at our guides.
Examples
HTTPure ships with a number of examples. To run an example, in the project root, run:
nix-shell --run 'example <Example Name>'
Or, without nix
:
spago -x test.dhall run --main Examples.<Example Name>.Main
Each example's startup banner will include information on routes available on the example server.
Testing
To run the test suite, in the project root run:
nix-shell --run check
Or, if nix
isn't your thing:
purs-tidy check src test docs && spago -x test.dhall test
Contributing
We are open to accepting contributions! Please see the contributing guide.
People
HTTPure is written and maintained by Connor Prussin and Petri Lehtinen.
We are open to accepting contributions! Please see the contributing guide.