5d7c2c8bda
* v0.8.1 * Add failing tests for `Headers` There's currently a bug with `Headers`: if a header is created with uppercase characters, it can never be found. The problem is that we only look for lowercase characters in the `Lookup` instance for `Headers`. * Convert `Headers` to use `CaseInsensitiveString` In an effort to be more true to HTTP, we make the header keys case-insensitive. This fixes the issue of looking up a header where the casing is different, Since `CaseInsensitiveString`s compare in a way that ignore casing. The API for consumers for `Headers` stays the same, but we get more correct code. A win for all! |
||
---|---|---|
docs | ||
src | ||
test | ||
.bowerrc | ||
.gitignore | ||
.travis.yml | ||
bower.json | ||
Contributing.md | ||
History.md | ||
License | ||
Makefile | ||
package.json | ||
psc-package.json | ||
Readme.md | ||
Releasing.md | ||
shell.nix | ||
yarn.lock |
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
psc-package install httpure
Quick Start
module Main where
import Prelude (($))
import Effect.Console as Console
import HTTPure as HTTPure
main :: HTTPure.ServerM
main =
HTTPure.serve 8080 router $ Console.log "Server now up on port 8080"
where
router _ = HTTPure.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:
make example EXAMPLE=<Example Name>
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:
make 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.