2018-04-02 19:44:46 +02:00
# Actix web [![Build Status](https://travis-ci.org/actix/actix-web.svg?branch=master)](https://travis-ci.org/actix/actix-web) [![Build status](https://ci.appveyor.com/api/projects/status/kkdb4yce7qhm5w85/branch/master?svg=true)](https://ci.appveyor.com/project/fafhrd91/actix-web-hdy9d/branch/master) [![codecov](https://codecov.io/gh/actix/actix-web/branch/master/graph/badge.svg)](https://codecov.io/gh/actix/actix-web) [![crates.io](https://meritbadge.herokuapp.com/actix-web)](https://crates.io/crates/actix-web) [![Join the chat at https://gitter.im/actix/actix](https://badges.gitter.im/actix/actix.svg)](https://gitter.im/actix/actix?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
2017-09-30 18:16:59 +02:00
2018-03-08 06:28:54 +01:00
Actix web is a simple, pragmatic, extremely fast, web framework for Rust.
2017-12-05 21:25:57 +01:00
2018-01-31 15:40:00 +01:00
* Supported *HTTP/1.x* and [*HTTP/2.0* ](https://actix.github.io/actix-web/guide/qs_13.html ) protocols
2017-12-30 16:07:39 +01:00
* Streaming and pipelining
* Keep-alive and slow requests handling
2018-01-31 15:40:00 +01:00
* Client/server [WebSockets ](https://actix.github.io/actix-web/guide/qs_9.html ) support
2017-12-30 16:07:39 +01:00
* Transparent content compression/decompression (br, gzip, deflate)
2018-01-31 15:40:00 +01:00
* Configurable [request routing ](https://actix.github.io/actix-web/guide/qs_5.html )
2017-12-30 16:07:39 +01:00
* Graceful server shutdown
* Multipart streams
2018-03-09 14:42:42 +01:00
* Static assets
2018-03-01 01:58:05 +01:00
* SSL support with openssl or native-tls
2017-12-30 16:07:39 +01:00
* Middlewares ([Logger](https://actix.github.io/actix-web/guide/qs_10.html#logging),
[Session ](https://actix.github.io/actix-web/guide/qs_10.html#user-sessions ),
2018-03-01 07:31:54 +01:00
[Redis sessions ](https://github.com/actix/actix-redis ),
2018-01-12 22:10:12 +01:00
[DefaultHeaders ](https://actix.github.io/actix-web/guide/qs_10.html#default-headers ),
2018-03-07 20:31:02 +01:00
[CORS ](https://actix.github.io/actix-web/actix_web/middleware/cors/index.html ),
[CSRF ](https://actix.github.io/actix-web/actix_web/middleware/csrf/index.html ))
2018-03-01 07:31:54 +01:00
* Built on top of [Actix actor framework ](https://github.com/actix/actix ).
2017-11-04 20:36:37 +01:00
2018-01-31 15:34:50 +01:00
## Documentation
2017-12-15 05:12:28 +01:00
2018-01-31 15:34:50 +01:00
* [User Guide ](http://actix.github.io/actix-web/guide/ )
* [API Documentation (Development) ](http://actix.github.io/actix-web/actix_web/ )
* [API Documentation (Releases) ](https://docs.rs/actix-web/ )
* [Chat on gitter ](https://gitter.im/actix/actix )
* Cargo package: [actix-web ](https://crates.io/crates/actix-web )
* Minimum supported Rust version: 1.21 or later
## Example
2018-03-12 17:13:04 +01:00
```rust
2018-01-31 15:34:50 +01:00
extern crate actix_web;
2018-04-01 02:15:44 +02:00
use actix_web::{App, HttpServer, Path};
2018-01-31 15:34:50 +01:00
2018-03-30 00:07:12 +02:00
fn index(info: Path< (String, u32)>) -> String {
format!("Hello {}! id:{}", info.0, info.1)
2018-01-31 15:34:50 +01:00
}
fn main() {
HttpServer::new(
2018-04-01 02:15:44 +02:00
|| App::new()
2018-03-30 00:07:12 +02:00
.resource("/{name}/{id}/index.html", |r| r.with(index)))
2018-01-31 15:34:50 +01:00
.bind("127.0.0.1:8080").unwrap()
.run();
}
```
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
2018-01-08 19:10:47 +01:00
* [Basics ](https://github.com/actix/actix-web/tree/master/examples/basics/ )
2017-12-30 21:08:54 +01:00
* [Stateful ](https://github.com/actix/actix-web/tree/master/examples/state/ )
2018-03-09 05:58:05 +01:00
* [Protobuf support ](https://github.com/actix/actix-web/tree/master/examples/protobuf/ )
2018-02-28 00:13:59 +01:00
* [Multipart streams ](https://github.com/actix/actix-web/tree/master/examples/multipart/ )
2017-12-30 21:47:39 +01:00
* [Simple websocket session ](https://github.com/actix/actix-web/tree/master/examples/websocket/ )
2017-12-19 01:42:58 +01:00
* [Tera templates ](https://github.com/actix/actix-web/tree/master/examples/template_tera/ )
* [Diesel integration ](https://github.com/actix/actix-web/tree/master/examples/diesel/ )
* [SSL / HTTP/2.0 ](https://github.com/actix/actix-web/tree/master/examples/tls/ )
* [Tcp/Websocket chat ](https://github.com/actix/actix-web/tree/master/examples/websocket-chat/ )
2017-12-30 16:07:39 +01:00
* [Json ](https://github.com/actix/actix-web/tree/master/examples/json/ )
2017-10-21 11:08:07 +02:00
2018-03-01 07:31:54 +01:00
You may consider checking out
[this directory ](https://github.com/actix/actix-web/tree/master/examples ) for more examples.
2018-01-31 15:34:50 +01:00
## Benchmarks
2018-02-15 18:53:09 +01:00
* [TechEmpower Framework Benchmark ](https://www.techempower.com/benchmarks/#section=data-r15&hw=ph&test=plaintext )
2018-02-28 00:13:59 +01:00
* Some basic benchmarks could be found in this [repository ](https://github.com/fafhrd91/benchmarks ).
2018-01-31 15:34:50 +01:00
2017-12-05 21:25:57 +01:00
## License
2017-10-21 11:08:07 +02:00
2017-12-19 01:48:30 +01:00
This project is licensed under either of
2017-12-30 16:07:39 +01:00
* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or [http://www.apache.org/licenses/LICENSE-2.0 ](http://www.apache.org/licenses/LICENSE-2.0 ))
* MIT license ([LICENSE-MIT](LICENSE-MIT) or [http://opensource.org/licenses/MIT ](http://opensource.org/licenses/MIT ))
2017-12-19 01:48:30 +01:00
at your option.
2018-01-22 00:29:02 +01:00
## Code of Conduct
Contribution to the actix-web crate is organized under the terms of the
Contributor Covenant, the maintainer of actix-web, @fafhrd91 , promises to
intervene to uphold that code of conduct.