hyper icon indicating copy to clipboard operation
hyper copied to clipboard

Type-safe, statically checked composition of HTTP servers

Results 24 hyper issues
Sort by recently updated
recently updated
newest added
trafficstars

The `res` type in `Conn` is implicitly `Type -> Type` despite its declaration not showing that. ```purescript module Hyper.Conn where -- | A `Conn` models the entirety of an HTTP...

I notice that the docs are currently deployed to [Oskar's S3 storage](docs/Makefile#L245). I wonder if perhaps it would make sense to migrate to [Read the Docs](https://readthedocs.org/) given that maintenance is...

This PR provides a way to optionally replace `+` by space in query values before passing them to uri decoding. (I want to reemphasize importance of this change, so I'm...

for things like CSS files, the content-type needs to be written as text/css for Chrome to actually use it as a stylesheet, it seems.

I've described details here: https://github.com/slamdata/purescript-uri/issues/38

Added a session store for storing session info in an encrypted cookie, and added tests for session stores. This does include a breaking change to the SessionStore class (put needs...

I needed a way to have custom headers on the FileServer in order to Gzip the contents. I created another parameter to do that. Let me know if this is...

Hyper uses `decodeURIComponent` to parse query string. However, `decodeURIComponent` has an incorrect type as documented [here](https://github.com/purescript/purescript-globals/issues/16), since it throws an exception on invalid input. I'm unsure whether it would be...

Requesting e.g. `/css/sheet.css` works fine, while requesting `/css/sheet.css?query=string` runs the not found handler. P.S. Would you be willing to accept PRs if I have a go on some of the...

The `String` instance of `readBody` in the Node server assumes `UTF8`, it should check Content-Type header.