1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-12 10:19:36 +00:00
actix-web/README.md

83 lines
4 KiB
Markdown
Raw Normal View History

# 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 16:16:59 +00:00
Actix web is a simple, pragmatic and extremely fast web framework for Rust.
2017-12-05 20:25:57 +00:00
2018-05-23 18:20:12 +00:00
* Supported *HTTP/1.x* and [*HTTP/2.0*](https://actix.rs/docs/http2/) protocols
2017-12-30 15:07:39 +00:00
* Streaming and pipelining
* Keep-alive and slow requests handling
2018-05-23 18:20:12 +00:00
* Client/server [WebSockets](https://actix.rs/docs/websockets/) support
2017-12-30 15:07:39 +00:00
* Transparent content compression/decompression (br, gzip, deflate)
2018-05-23 18:20:12 +00:00
* Configurable [request routing](https://actix.rs/docs/url-dispatch/)
2017-12-30 15:07:39 +00:00
* Multipart streams
2018-03-09 13:42:42 +00:00
* Static assets
* SSL support with OpenSSL or `native-tls`
2018-07-24 21:18:04 +00:00
* Middlewares ([Logger, Session, CORS, CSRF, etc](https://actix.rs/docs/middleware/))
2018-05-23 18:20:12 +00:00
* Includes an asynchronous [HTTP client](https://actix.rs/actix-web/actix_web/client/index.html)
2018-05-15 17:20:32 +00:00
* Built on top of [Actix actor framework](https://github.com/actix/actix)
2018-10-28 16:24:19 +00:00
* Experimental [Async/Await](https://github.com/mehcode/actix-web-async-await) support.
2017-11-04 19:36:37 +00:00
2018-04-10 17:29:10 +00:00
## Documentation & community resources
2017-12-15 04:12:28 +00:00
2018-05-23 18:20:12 +00:00
* [User Guide](https://actix.rs/docs/)
2018-04-13 21:36:07 +00:00
* [API Documentation (Development)](https://actix.rs/actix-web/actix_web/)
2018-07-21 11:19:02 +00:00
* [API Documentation (Releases)](https://actix.rs/api/actix-web/stable/actix_web/)
2018-01-31 14:34:50 +00:00
* [Chat on gitter](https://gitter.im/actix/actix)
* Cargo package: [actix-web](https://crates.io/crates/actix-web)
* Minimum supported Rust version: 1.31 or later
2018-01-31 14:34:50 +00:00
## Example
2018-03-12 16:13:04 +00:00
```rust
2018-01-31 14:34:50 +00:00
extern crate actix_web;
2018-05-23 18:20:12 +00:00
use actix_web::{http, server, App, Path, Responder};
2018-01-31 14:34:50 +00:00
2018-05-23 18:20:12 +00:00
fn index(info: Path<(u32, String)>) -> impl Responder {
format!("Hello {}! id:{}", info.1, info.0)
2018-01-31 14:34:50 +00:00
}
fn main() {
2018-04-06 16:45:10 +00:00
server::new(
2018-04-01 00:15:44 +00:00
|| App::new()
2018-04-10 17:39:16 +00:00
.route("/{id}/{name}/index.html", http::Method::GET, index))
2018-01-31 14:34:50 +00:00
.bind("127.0.0.1:8080").unwrap()
.run();
}
```
2017-12-15 04:12:28 +00:00
2018-01-31 14:34:50 +00:00
### More examples
2017-10-07 07:53:36 +00:00
2018-04-13 03:31:58 +00:00
* [Basics](https://github.com/actix/examples/tree/master/basics/)
* [Stateful](https://github.com/actix/examples/tree/master/state/)
* [Protobuf support](https://github.com/actix/examples/tree/master/protobuf/)
* [Multipart streams](https://github.com/actix/examples/tree/master/multipart/)
2018-04-24 16:16:46 +00:00
* [Simple websocket](https://github.com/actix/examples/tree/master/websocket/)
2018-10-09 20:23:37 +00:00
* [Tera](https://github.com/actix/examples/tree/master/template_tera/) /
2018-04-24 16:16:46 +00:00
[Askama](https://github.com/actix/examples/tree/master/template_askama/) templates
2018-04-13 03:31:58 +00:00
* [Diesel integration](https://github.com/actix/examples/tree/master/diesel/)
2018-04-24 16:34:38 +00:00
* [r2d2](https://github.com/actix/examples/tree/master/r2d2/)
2018-04-13 03:31:58 +00:00
* [SSL / HTTP/2.0](https://github.com/actix/examples/tree/master/tls/)
* [Tcp/Websocket chat](https://github.com/actix/examples/tree/master/websocket-chat/)
* [Json](https://github.com/actix/examples/tree/master/json/)
2017-10-21 09:08:07 +00:00
2018-03-01 06:31:54 +00:00
You may consider checking out
2018-04-13 03:31:58 +00:00
[this directory](https://github.com/actix/examples/tree/master/) for more examples.
2018-03-01 06:31:54 +00:00
2018-01-31 14:34:50 +00:00
## Benchmarks
* [TechEmpower Framework Benchmark](https://www.techempower.com/benchmarks/#section=data-r16&hw=ph&test=plaintext)
2018-02-15 17:53:09 +00:00
2017-12-05 20:25:57 +00:00
## License
2017-10-21 09:08:07 +00:00
2017-12-19 00:48:30 +00:00
This project is licensed under either of
2017-12-30 15:07:39 +00: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 00:48:30 +00:00
at your option.
2018-01-21 23:29:02 +00: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.