Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/seanmonstar/warp
A super-easy, composable, web server framework for warp speeds.
https://github.com/seanmonstar/warp
framework http rust server
Last synced: 3 days ago
JSON representation
A super-easy, composable, web server framework for warp speeds.
- Host: GitHub
- URL: https://github.com/seanmonstar/warp
- Owner: seanmonstar
- License: mit
- Created: 2018-07-11T17:43:50.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-08-08T12:37:37.000Z (4 months ago)
- Last Synced: 2024-12-02T09:09:45.366Z (10 days ago)
- Topics: framework, http, rust, server
- Language: Rust
- Homepage: https://seanmonstar.com/post/176530511587/warp
- Size: 905 KB
- Stars: 9,607
- Watchers: 109
- Forks: 724
- Open Issues: 226
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
- awesome - seanmonstar/warp - A super-easy, composable, web server framework for warp speeds. (Rust)
- awesome-rust - seanmonstar/warp - easy, composable, web server framework for warp speeds. [![crate](https://img.shields.io/crates/v/create-rust-app.svg)](https://crates.io/crates/warp) (Libraries / Web programming)
- awesome-rust-cn - seanmonstar/warp
- awesome-list - warp - easy, composable, web server framework for warp speeds. | seanmonstar | 5196 | (Rust)
- my-awesome - seanmonstar/warp - 08 star:9.6k fork:0.7k A super-easy, composable, web server framework for warp speeds. (Rust)
- StarryDivineSky - seanmonstar/warp
README
# warp
[![crates.io](https://img.shields.io/crates/v/warp.svg)](https://crates.io/crates/warp)
[![Released API docs](https://docs.rs/warp/badge.svg)](https://docs.rs/warp)
[![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](./LICENSE)
[![GHA Build Status](https://github.com/seanmonstar/warp/workflows/CI/badge.svg)](https://github.com/seanmonstar/warp/actions?query=workflow%3ACI)
[![Discord chat][discord-badge]][discord-url]A super-easy, composable, web server framework for warp speeds.
The fundamental building block of `warp` is the `Filter`: they can be combined
and composed to express rich requirements on requests.Thanks to its `Filter` system, warp provides these out of the box:
* 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
* Gzip, Deflate, and Brotli compressionSince it builds on top of [hyper](https://hyper.rs), you automatically get:
- HTTP/1
- HTTP/2
- Asynchronous
- One of the fastest HTTP implementations
- Tested and **correct**## Example
Add warp and Tokio to your dependencies:
```toml
tokio = { version = "1", features = ["full"] }
warp = "0.3"
```And then get started in your `main.rs`:
```rust
use warp::Filter;#[tokio::main]
async fn main() {
// GET /hello/warp => 200 OK with body "Hello, warp!"
let hello = warp::path!("hello" / String)
.map(|name| format!("Hello, {}!", name));warp::serve(hello)
.run(([127, 0, 0, 1], 3030))
.await;
}
```For more information you can check the [docs](https://docs.rs/warp) or the [examples](https://github.com/seanmonstar/warp/tree/master/examples).
[discord-badge]: https://img.shields.io/discord/500028886025895936.svg?logo=discord
[discord-url]: https://discord.gg/RFsPjyt