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-14 23:01:06 -07:00
src split http request; add HttpRequest::range() 2017-10-14 22:52:38 -07:00
tests split http request; add HttpRequest::range() 2017-10-14 22:52:38 -07:00
.gitignore prep work 2017-09-30 09:10:03 -07:00
.travis.yml fix links 2017-10-14 23:00:03 -07:00
build.rs prep work 2017-09-30 09:10:03 -07:00
Cargo.toml split http request; add HttpRequest::range() 2017-10-14 22:52:38 -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 fix another link 2017-10-14 23:01:06 -07:00

Actix http Build Status

Actix http is a server http framework for Actix framework.


Actix http is licensed under the Apache-2.0 license.

Features

Usage

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

[dependencies]
actix-web = { git = "https://github.com/fafhrd91/actix-web.git" }

Example

extern crate actix;
extern crate actix_web;
extern crate futures;
use std::net;
use std::str::FromStr;

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

// Route
struct MyRoute;

impl Actor for MyRoute {
    type Context = HttpContext<Self>;
}

impl Route for MyRoute {
    type State = ();

    fn request(req: HttpRequest, payload: Payload, ctx: &mut HttpContext<Self>) -> Reply<Self>
    {
        Reply::reply(httpcodes::HTTPOk)
    }
}

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

    // create routing map with `MyRoute` route
    let mut routes = RoutingMap::default();
    routes
      .add_resource("/")
        .post::<MyRoute>();

    // start http server
    let http = HttpServer::new(routes);
    http.serve::<()>(
        &net::SocketAddr::from_str("127.0.0.1:8880").unwrap()).unwrap();

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

    system.run();
    println!("Done");
}