1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-02 21:39:26 +00:00
Actix Web is a powerful, pragmatic, and extremely fast web framework for Rust.
Go to file
2017-10-23 14:08:11 -07:00
examples add stateful example 2017-10-23 11:48:06 -07:00
src payload error tests 2017-10-23 14:08:11 -07:00
tests update multipart tests 2017-10-22 22:23:38 -07:00
.appveyor.yml cargo clean for appvoyer 2017-10-16 20:05:54 -07:00
.gitignore multipart implementation 2017-10-18 23:43:50 -07:00
.travis.yml enable beta on travis 2017-10-22 23:00:04 -07:00
Cargo.toml use actix 0.3 2017-10-23 10:05:07 -07:00
cov.sh more tests 2017-10-22 17:33:24 -07:00
LICENSE prep work 2017-09-30 09:10:03 -07:00
Makefile prep work 2017-09-30 09:10:03 -07:00
README.md add stateful example 2017-10-23 11:48:06 -07:00

Actix web Build Status Build status codecov

Web framework for Actix.


Actix web is licensed under the Apache-2.0 license.

Features

  • HTTP 1.1 and 1.0 support
  • Streaming and pipelining support
  • Keep-alive and slow requests support
  • WebSockets support
  • Configurable request routing
  • Multipart streams
  • Middlewares

Usage

To use actix-web, add this to your Cargo.toml:

[dependencies]
actix-web = "0.1"

Example

extern crate actix;
extern crate actix_web;
extern crate futures;

use actix::*;
use actix_web::*;

fn main() {
    let system = System::new("test");

    // start http server
    HttpServer::new(
        // create application
        Application::default("/")
            .resource("/", |r|
                r.handler(Method::GET, |req, payload, state| {
                    httpcodes::HTTPOk
                })
             )
             .finish())
        .serve::<_, ()>("127.0.0.1:8080").unwrap();

    // stop system
    Arbiter::handle().spawn_fn(|| {
        Arbiter::system().send(msgs::SystemExit(0));
        futures::future::ok(())
    });

    system.run();
}