2017-12-26 11:04:25 -08: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](http://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 09:16:59 -07:00
2018-01-09 10:08:06 -08:00
Actix web is a small, fast, pragmatic, open source rust web framework.
2017-12-05 12:25:57 -08:00
```rust,ignore
2018-01-02 19:57:25 -08:00
extern crate actix_web;
2017-12-05 12:25:57 -08:00
use actix_web::*;
2017-12-08 12:51:44 -08:00
fn index(req: HttpRequest) -> String {
format!("Hello {}!", & req.match_info()["name"])
2017-12-05 12:25:57 -08:00
}
fn main() {
2017-12-08 12:51:44 -08:00
HttpServer::new(
2017-12-13 21:44:16 -08:00
|| Application::new()
2017-12-11 19:17:37 -08:00
.resource("/{name}", |r| r.f(index)))
2018-01-02 19:57:25 -08:00
.bind("127.0.0.1:8080").unwrap()
2018-01-05 16:32:36 -08:00
.run();
2017-12-05 12:25:57 -08:00
}
```
## Documentation
2017-09-30 09:16:59 -07:00
2017-11-27 19:56:14 -08:00
* [User Guide ](http://actix.github.io/actix-web/guide/ )
2017-10-23 15:58:05 -07:00
* [API Documentation (Development) ](http://actix.github.io/actix-web/actix_web/ )
* [API Documentation (Releases) ](https://docs.rs/actix-web/ )
2018-01-08 19:10:47 +01:00
* [Chat on gitter ](https://gitter.im/actix/actix )
2017-10-30 16:37:26 -07:00
* Cargo package: [actix-web ](https://crates.io/crates/actix-web )
2017-10-06 23:14:13 -07:00
* Minimum supported Rust version: 1.20 or later
2017-09-30 09:16:59 -07:00
2017-10-07 01:12:43 -07:00
## Features
2017-12-30 16:07:39 +01:00
* Supported *HTTP/1.x* and *HTTP/2.0* protocols
* Streaming and pipelining
* Keep-alive and slow requests handling
* [WebSockets ](https://actix.github.io/actix-web/actix_web/ws/index.html )
* Transparent content compression/decompression (br, gzip, deflate)
* Configurable request routing
* Graceful server shutdown
* Multipart streams
* 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-01-12 13:10:12 -08:00
[DefaultHeaders ](https://actix.github.io/actix-web/guide/qs_10.html#default-headers ),
[CORS ](https://actix.github.io/actix-web/actix_web/middleware/cors/index.html ))
2017-12-30 16:07:39 +01:00
* Built on top of [Actix ](https://github.com/actix/actix ).
2017-11-04 12:36:37 -07:00
2017-12-14 20:12:28 -08:00
## Benchmarks
2017-12-16 11:39:56 -08:00
Some basic benchmarks could be found in this [respository ](https://github.com/fafhrd91/benchmarks ).
2017-12-14 20:12:28 -08:00
2017-12-05 12:25:57 -08:00
## Examples
2017-10-07 00:53:36 -07: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/ )
2017-12-18 16:42:58 -08:00
* [Mulitpart 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-18 16:42:58 -08: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-11-04 09:07:44 -07:00
* [SockJS Server ](https://github.com/actix/actix-sockjs )
2017-12-30 16:07:39 +01:00
* [Json ](https://github.com/actix/actix-web/tree/master/examples/json/ )
2017-10-21 02:08:07 -07: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
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-18 16:48:30 -08:00
at your option.
2018-01-21 15:29:02 -08: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.