Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mitchellwrosen/warpless
https://github.com/mitchellwrosen/warpless
Last synced: 9 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/mitchellwrosen/warpless
- Owner: mitchellwrosen
- License: mit
- Created: 2023-02-05T16:48:11.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-07T04:09:33.000Z (8 months ago)
- Last Synced: 2024-05-07T17:26:11.970Z (8 months ago)
- Language: Haskell
- Size: 5.32 MB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# warpless
A slim `warp` fork.
Last synchronized with `warp` May 5, 2024.
Latest commit ported over: `2a7399f5229f6a8ea675a20cf0cf8f69ba8b9f72`.## Changes
- No `https` support.
- No `HTTP/2` support.
- No slowloris protection.
- No file descriptor cache.
- No file info cache.
- No response logger.
- No control over how much of an unread request body is read on a keepalive connection. It's all always read.
- No automatic Server response header.
- No control over preventing allocating too large of a response.
- No automatic setting of the `Alt-Svc` response header: you can just set it yourself in a response.
- No option to not parse the raw path info.
- No maximum buffer size for responses.
- `Expect: 100-continue` is eagerly replied to, rather than lazily upon trying to read the request body.
- Uncaught exceptions are ignored by default, rather than printed to stderr.