2019-12-06 07:22:29 +01:00
< div align = "center" >
2021-02-10 13:12:03 +01:00
< h1 > Actix Web< / h1 >
2020-07-05 02:16:53 +02:00
< p >
2020-11-29 17:33:45 +01:00
< strong > Actix Web is a powerful, pragmatic, and extremely fast web framework for Rust< / strong >
2020-07-05 02:16:53 +02:00
< / p >
2019-12-06 07:22:29 +01:00
< p >
2020-10-30 04:15:22 +01:00
[![crates.io ](https://img.shields.io/crates/v/actix-web?label=latest )](https://crates.io/crates/actix-web)
2022-01-21 21:23:29 +01:00
[![Documentation ](https://docs.rs/actix-web/badge.svg?version=4.0.0-beta.21 )](https://docs.rs/actix-web/4.0.0-beta.21)
2022-01-05 05:24:40 +01:00
![MSRV ](https://img.shields.io/badge/rustc-1.54+-ab6000.svg )
2021-02-10 13:10:03 +01:00
![MIT or Apache 2.0 licensed ](https://img.shields.io/crates/l/actix-web.svg )
2022-01-21 21:23:29 +01:00
[![Dependency Status ](https://deps.rs/crate/actix-web/4.0.0-beta.21/status.svg )](https://deps.rs/crate/actix-web/4.0.0-beta.21)
2020-07-05 02:16:53 +02:00
< br / >
2021-12-31 08:53:53 +01:00
[![CI ](https://github.com/actix/actix-web/actions/workflows/ci.yml/badge.svg )](https://github.com/actix/actix-web/actions/workflows/ci.yml)
2022-01-05 05:24:40 +01:00
[![codecov ](https://codecov.io/gh/actix/actix-web/branch/master/graph/badge.svg )](https://codecov.io/gh/actix/actix-web)
2021-02-07 04:54:58 +01:00
![downloads ](https://img.shields.io/crates/d/actix-web.svg )
2020-10-30 04:15:22 +01:00
[![Chat on Discord ](https://img.shields.io/discord/771444961383153695?label=chat&logo=discord )](https://discord.gg/NWpN5mmg3x)
2019-12-08 14:27:06 +01:00
2019-12-06 07:22:29 +01:00
< / p >
< / div >
2017-09-30 18:16:59 +02:00
2020-07-05 02:16:53 +02:00
## Features
2017-12-05 21:25:57 +01:00
2022-01-31 23:20:53 +01:00
- Supports _HTTP/1.x_ and _HTTP/2_
2021-12-22 09:21:30 +01:00
- Streaming and pipelining
2022-01-31 23:20:53 +01:00
- Powerful [request routing ](https://actix.rs/docs/url-dispatch/ ) with optional macros
- Full [Tokio ](https://tokio.rs ) compatibility
2021-12-22 09:21:30 +01:00
- Keep-alive and slow requests handling
- Client/server [WebSockets ](https://actix.rs/docs/websockets/ ) support
- Transparent content compression/decompression (br, gzip, deflate, zstd)
- Multipart streams
- Static assets
- SSL support using OpenSSL or Rustls
- Middlewares ([Logger, Session, CORS, etc](https://actix.rs/docs/middleware/))
- Includes an async [HTTP client ](https://docs.rs/awc/ )
2021-12-29 09:59:15 +01:00
- Runs on stable Rust 1.54+
2017-11-04 20:36:37 +01:00
2020-07-05 02:16:53 +02:00
## Documentation
2020-04-07 21:48:01 +02:00
2021-12-22 09:21:30 +01:00
- [Website & User Guide ](https://actix.rs )
- [Examples Repository ](https://github.com/actix/examples )
- [API Documentation ](https://docs.rs/actix-web )
- [API Documentation (master branch) ](https://actix.rs/actix-web/actix_web )
2020-04-07 21:48:01 +02:00
2018-01-31 15:34:50 +01:00
## Example
2020-01-16 15:17:17 +01:00
Dependencies:
```toml
[dependencies]
2022-01-31 23:20:53 +01:00
actix-web = "4.0.0-rc.1"
2020-01-16 15:17:17 +01:00
```
Code:
2018-03-12 17:13:04 +01:00
```rust
2019-12-12 02:06:22 +01:00
use actix_web::{get, web, App, HttpServer, Responder};
2018-01-31 15:34:50 +01:00
2019-11-26 11:07:39 +01:00
#[get("/{id}/{name}/index.html")]
2022-01-31 23:20:53 +01:00
async fn index(params: web::Path< (u32, String)>) -> impl Responder {
let (id, name) = params.into_inner();
2020-07-21 01:54:26 +02:00
format!("Hello {}! id:{}", name, id)
2018-01-31 15:34:50 +01:00
}
2022-01-31 23:20:53 +01:00
#[actix_web::main] // or #[tokio::main]
2019-11-26 12:16:33 +01:00
async fn main() -> std::io::Result< ()> {
2019-11-26 11:07:39 +01:00
HttpServer::new(|| App::new().service(index))
2022-01-31 23:20:53 +01:00
.bind(("127.0.0.1", 8080))?
2019-12-22 14:16:07 +01:00
.run()
2019-11-26 12:16:33 +01:00
.await
2018-01-31 15:34:50 +01:00
}
```
2017-12-15 05:12:28 +01:00
2018-01-31 15:34:50 +01:00
### More examples
2017-10-07 09:53:36 +02:00
2021-12-22 09:21:30 +01:00
- [Basic Setup ](https://github.com/actix/examples/tree/master/basics/basics/ )
- [Application State ](https://github.com/actix/examples/tree/master/basics/state/ )
- [JSON Handling ](https://github.com/actix/examples/tree/master/json/json/ )
- [Multipart Streams ](https://github.com/actix/examples/tree/master/forms/multipart/ )
- [Diesel Integration ](https://github.com/actix/examples/tree/master/database_interactions/diesel/ )
- [r2d2 Integration ](https://github.com/actix/examples/tree/master/database_interactions/r2d2/ )
- [Simple WebSocket ](https://github.com/actix/examples/tree/master/websockets/websocket/ )
- [Tera Templates ](https://github.com/actix/examples/tree/master/template_engines/tera/ )
- [Askama Templates ](https://github.com/actix/examples/tree/master/template_engines/askama/ )
- [HTTPS using Rustls ](https://github.com/actix/examples/tree/master/security/rustls/ )
- [HTTPS using OpenSSL ](https://github.com/actix/examples/tree/master/security/openssl/ )
- [WebSocket Chat ](https://github.com/actix/examples/tree/master/websockets/chat/ )
2017-10-21 11:08:07 +02:00
2022-01-31 23:20:53 +01:00
You may consider checking out [this directory ](https://github.com/actix/examples/tree/master/ ) for more examples.
2018-03-01 07:31:54 +01:00
2018-01-31 15:34:50 +01:00
## Benchmarks
2022-01-31 23:20:53 +01:00
One of the fastest web frameworks available according to the [TechEmpower Framework Benchmark ](https://www.techempower.com/benchmarks/#section=data-r20&test=composite ).
2018-02-15 18:53:09 +01:00
2017-12-05 21:25:57 +01:00
## License
2017-10-21 11:08:07 +02:00
2022-01-31 23:20:53 +01:00
This project is licensed under either of the following licenses, at your option:
2017-12-19 01:48:30 +01:00
2022-01-31 23:20:53 +01:00
- Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or [http://www.apache.org/licenses/LICENSE-2.0])
- MIT license ([LICENSE-MIT](LICENSE-MIT) or [http://opensource.org/licenses/MIT])
2018-01-22 00:29:02 +01:00
## Code of Conduct
2020-12-31 04:24:18 +01:00
Contribution to the actix-web repo is organized under the terms of the Contributor Covenant.
The Actix team promises to intervene to uphold that code of conduct.