2019-01-29 18:17:38 +00:00
# Actix http [![Build Status](https://travis-ci.org/actix/actix-http.svg?branch=master)](https://travis-ci.org/actix/actix-http) [![Build status](https://ci.appveyor.com/api/projects/status/i51p65u2bukstgwg/branch/master?svg=true)](https://ci.appveyor.com/project/fafhrd91/actix-http-b1qsn/branch/master) [![codecov](https://codecov.io/gh/actix/actix-http/branch/master/graph/badge.svg)](https://codecov.io/gh/actix/actix-http) [![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
2018-10-05 00:00:27 +00:00
Actix http
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/ )
2019-01-29 18:14:00 +00:00
* [API Documentation ](https://docs.rs/actix-http/ )
2018-01-31 14:34:50 +00:00
* [Chat on gitter ](https://gitter.im/actix/actix )
2019-01-29 18:14:00 +00:00
* Cargo package: [actix-http ](https://crates.io/crates/actix-http )
2018-05-25 04:09:20 +00:00
* Minimum supported Rust version: 1.26 or later
2018-01-31 14:34:50 +00:00
## Example
2018-03-12 16:13:04 +00:00
```rust
2018-11-24 13:37:30 +00:00
// see examples/framed_hello.rs for complete list of used crates.
2018-10-09 17:46:00 +00:00
extern crate actix_http;
use actix_http::{h1, Response, ServiceConfig};
2018-01-31 14:34:50 +00:00
fn main() {
2018-11-24 13:37:30 +00:00
Server::new().bind("framed_hello", "127.0.0.1:8080", || {
IntoFramed::new(|| h1::Codec::new(ServiceConfig::default())) // < - create h1 codec
2018-11-25 02:18:33 +00:00
.and_then(TakeItem::new().map_err(|_| ())) // < - read one request
.and_then(|(_req, _framed): (_ , Framed< _ , _ > )| { // < - send response and close conn
2018-11-24 13:37:30 +00:00
SendResponse::send(_framed, Response::Ok().body("Hello world!"))
.map_err(|_| ())
.map(|_| ())
})
}).unwrap().run();
2018-01-31 14:34:50 +00:00
}
```
2017-12-15 04:12:28 +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
2018-10-09 17:46:00 +00:00
Contribution to the actix-http crate is organized under the terms of the
Contributor Covenant, the maintainer of actix-http, @fafhrd91 , promises to
2018-01-21 23:29:02 +00:00
intervene to uphold that code of conduct.