1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-02 21:39:26 +00:00
actix-web/README.md

65 lines
1.9 KiB
Markdown
Raw Normal View History

2017-10-16 20:16:54 +00:00
# Actix web [![Build Status](https://travis-ci.org/fafhrd91/actix-web.svg?branch=master)](https://travis-ci.org/fafhrd91/actix-web) [![Build Status](https://ci.appveyor.com/api/projects/status/github/fafhrd91/actix-web?branch=master&svg=true)](https://ci.appveyor.com/project/fafhrd91/actix-web) [![codecov](https://codecov.io/gh/fafhrd91/actix-web/branch/master/graph/badge.svg)](https://codecov.io/gh/fafhrd91/actix-web)
2017-09-30 16:16:59 +00:00
2017-10-17 03:08:57 +00:00
Web framework for [Actix](https://github.com/fafhrd91/actix).
2017-09-30 16:16:59 +00:00
2017-10-14 14:59:35 +00:00
* [API Documentation](http://fafhrd91.github.io/actix-web/actix_web/)
2017-10-15 06:00:03 +00:00
* Cargo package: [actix-http](https://crates.io/crates/actix-web)
2017-10-07 06:14:13 +00:00
* Minimum supported Rust version: 1.20 or later
2017-09-30 16:16:59 +00:00
---
2017-10-16 17:43:35 +00:00
Actix web is licensed under the [Apache-2.0 license](http://opensource.org/licenses/APACHE-2.0).
2017-09-30 16:16:59 +00:00
2017-10-07 08:12:43 +00:00
## Features
* HTTP 1.1 and 1.0 support
* Streaming and pipelining support
2017-10-13 23:33:23 +00:00
* Keep-alive and slow requests support
2017-10-14 14:59:35 +00:00
* [WebSockets support](https://fafhrd91.github.io/actix-web/actix_web/ws/index.html)
* [Configurable request routing](https://fafhrd91.github.io/actix-web/actix_web/struct.RoutingMap.html)
2017-09-30 16:16:59 +00:00
## Usage
2017-10-14 14:59:35 +00:00
To use `actix-web`, add this to your `Cargo.toml`:
2017-09-30 16:16:59 +00:00
```toml
[dependencies]
2017-10-14 14:59:35 +00:00
actix-web = { git = "https://github.com/fafhrd91/actix-web.git" }
2017-09-30 16:16:59 +00:00
```
2017-10-07 07:53:36 +00:00
## Example
```rust
extern crate actix;
2017-10-14 14:59:35 +00:00
extern crate actix_web;
2017-10-07 07:53:36 +00:00
extern crate futures;
2017-10-15 22:10:35 +00:00
use actix::*;
2017-10-14 14:59:35 +00:00
use actix_web::*;
2017-10-07 07:53:36 +00:00
fn main() {
2017-10-08 07:14:52 +00:00
let system = System::new("test");
2017-10-07 07:53:36 +00:00
// start http server
2017-10-15 21:17:41 +00:00
HttpServer::new(
2017-10-15 21:19:50 +00:00
// create routing map
2017-10-15 21:17:41 +00:00
RoutingMap::default()
2017-10-15 21:19:50 +00:00
// handler for "GET /"
2017-10-15 21:17:41 +00:00
.resource("/", |r|
r.handler(Method::GET, |req, payload, state| {
httpcodes::HTTPOk
})
)
.finish())
2017-10-15 21:53:03 +00:00
.serve::<_, ()>("127.0.0.1:8080").unwrap();
2017-10-07 07:53:36 +00:00
// stop system
Arbiter::handle().spawn_fn(|| {
Arbiter::system().send(msgs::SystemExit(0));
futures::future::ok(())
});
system.run();
}
```