1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-01-19 06:04:40 +01:00
actix-web/README.md

110 lines
4.2 KiB
Markdown
Raw Normal View History

2019-12-06 14:22:29 +08:00
<div align="center">
2021-02-10 12:12:03 +00:00
<h1>Actix Web</h1>
<p>
<strong>Actix Web is a powerful, pragmatic, and extremely fast web framework for Rust</strong>
</p>
2019-12-06 14:22:29 +08:00
<p>
2020-10-30 03:15:22 +00:00
[![crates.io](https://img.shields.io/crates/v/actix-web?label=latest)](https://crates.io/crates/actix-web)
[![Documentation](https://docs.rs/actix-web/badge.svg?version=4.0.0-beta.12)](https://docs.rs/actix-web/4.0.0-beta.12)
2021-10-19 01:59:28 +01:00
[![Version](https://img.shields.io/badge/rustc-1.52+-ab6000.svg)](https://blog.rust-lang.org/2021/05/06/Rust-1.52.0.html)
2021-02-10 12:10:03 +00:00
![MIT or Apache 2.0 licensed](https://img.shields.io/crates/l/actix-web.svg)
[![Dependency Status](https://deps.rs/crate/actix-web/4.0.0-beta.12/status.svg)](https://deps.rs/crate/actix-web/4.0.0-beta.12)
<br />
2021-02-07 03:54:58 +00:00
[![build status](https://github.com/actix/actix-web/workflows/CI%20%28Linux%29/badge.svg?branch=master&event=push)](https://github.com/actix/actix-web/actions)
[![codecov](https://codecov.io/gh/actix/actix-web/branch/master/graph/badge.svg)](https://codecov.io/gh/actix/actix-web)
2021-02-07 03:54:58 +00:00
![downloads](https://img.shields.io/crates/d/actix-web.svg)
2020-10-30 03:15:22 +00:00
[![Chat on Discord](https://img.shields.io/discord/771444961383153695?label=chat&logo=discord)](https://discord.gg/NWpN5mmg3x)
2019-12-08 19:27:06 +06:00
2019-12-06 14:22:29 +08:00
</p>
</div>
2017-09-30 09:16:59 -07:00
## Features
2017-12-05 12:25:57 -08:00
* Supports *HTTP/1.x* and *HTTP/2*
2017-12-30 16:07:39 +01:00
* Streaming and pipelining
* Keep-alive and slow requests handling
2018-05-23 11:20:12 -07:00
* Client/server [WebSockets](https://actix.rs/docs/websockets/) support
2021-06-19 20:23:06 +01:00
* Transparent content compression/decompression (br, gzip, deflate, zstd)
* Powerful [request routing](https://actix.rs/docs/url-dispatch/)
2017-12-30 16:07:39 +01:00
* Multipart streams
2018-03-09 05:42:42 -08:00
* Static assets
* SSL support using OpenSSL or Rustls
2019-06-05 09:02:44 +06:00
* Middlewares ([Logger, Session, CORS, etc](https://actix.rs/docs/middleware/))
* Includes an async [HTTP client](https://docs.rs/awc/)
2021-10-19 01:59:28 +01:00
* Runs on stable Rust 1.52+
2017-11-04 12:36:37 -07:00
## Documentation
2020-04-08 04:48:01 +09: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-08 04:48:01 +09:00
2018-01-31 06:34:50 -08:00
## Example
2020-01-16 23:17:17 +09:00
Dependencies:
```toml
[dependencies]
actix-web = "3"
2020-01-16 23:17:17 +09:00
```
Code:
2018-03-12 09:13:04 -07:00
```rust
use actix_web::{get, web, App, HttpServer, Responder};
2018-01-31 06:34:50 -08:00
2019-11-26 16:07:39 +06:00
#[get("/{id}/{name}/index.html")]
async fn index(web::Path((id, name)): web::Path<(u32, String)>) -> impl Responder {
format!("Hello {}! id:{}", name, id)
2018-01-31 06:34:50 -08:00
}
2020-06-18 15:45:30 +01:00
#[actix_web::main]
2019-11-26 17:16:33 +06:00
async fn main() -> std::io::Result<()> {
2019-11-26 16:07:39 +06:00
HttpServer::new(|| App::new().service(index))
2019-03-23 21:29:16 -07:00
.bind("127.0.0.1:8080")?
2019-12-22 17:16:07 +04:00
.run()
2019-11-26 17:16:33 +06:00
.await
2018-01-31 06:34:50 -08:00
}
```
2017-12-14 20:12:28 -08:00
2018-01-31 06:34:50 -08:00
### More examples
2017-10-07 00:53:36 -07: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 02:08:07 -07:00
2018-02-28 22:31:54 -08:00
You may consider checking out
2018-04-12 20:31:58 -07:00
[this directory](https://github.com/actix/examples/tree/master/) for more examples.
2018-02-28 22:31:54 -08:00
2018-01-31 06:34:50 -08:00
## Benchmarks
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 09:53:09 -08:00
2017-12-05 12:25:57 -08:00
## License
2017-10-21 02:08:07 -07:00
2017-12-18 16:48:30 -08:00
This project is licensed under either of
* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or
2021-02-07 03:54:58 +00:00
[http://www.apache.org/licenses/LICENSE-2.0])
* MIT license ([LICENSE-MIT](LICENSE-MIT) or
2021-02-07 03:54:58 +00:00
[http://opensource.org/licenses/MIT])
2017-12-18 16:48:30 -08:00
at your option.
2018-01-21 15:29:02 -08:00
## Code of Conduct
2020-12-31 03:24:18 +00: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.