Overview of warp web framework
masterwarp is a composable web server framework built on top of hyper. Its core building block is the Filter system, which allows you to combine and compose requirements for HTTP requests.
Key features provided out of the box include:
- Path routing and parameter extraction
- Header requirements and extraction
- Query string deserialization
- JSON and Form bodies
- Multipart form data
- Static Files and Directories
- Websockets
- Access logging
- Compression (Gzip, Deflate, and Brotli)
Because it uses hyper, it supports HTTP/1, HTTP/2, and is fully asynchronous.