Go to file
Yuki Okushi 845ce3cf34 Fix doc comment 2020-02-25 07:46:03 +09:00
.github
actix-cors allow to specify multi pattern for resources 2019-12-25 20:14:44 +04:00
actix-files Fix/suppress warnings 2020-02-08 02:20:01 +09:00
actix-framed
actix-http Fix doc comment 2020-02-25 07:46:03 +09:00
actix-identity
actix-multipart
actix-session
actix-web-actors
actix-web-codegen
awc
benches
examples
src
test-server
tests Use `Pin<Box<S>>` in `BodyStream` and `SizedStream` (#1328) 2020-01-31 09:39:34 +09:00
.appveyor.yml
.gitignore
CHANGES.md
CODE_OF_CONDUCT.md
Cargo.toml
LICENSE-APACHE
LICENSE-MIT
MIGRATION.md
README.md
codecov.yml
rustfmt.toml

README.md

Actix web

Actix web is a small, pragmatic, and extremely fast rust web framework

Build Status codecov crates.io Join the chat at https://gitter.im/actix/actix Documentation Download Version License

Website | Chat | Examples


Actix web is a simple, pragmatic and extremely fast web framework for Rust.

Example

Dependencies:

[dependencies]
actix-web = "2"
actix-rt = "1"

Code:

use actix_web::{get, web, App, HttpServer, Responder};

#[get("/{id}/{name}/index.html")]
async fn index(info: web::Path<(u32, String)>) -> impl Responder {
    format!("Hello {}! id:{}", info.1, info.0)
}

#[actix_rt::main]
async fn main() -> std::io::Result<()> {
    HttpServer::new(|| App::new().service(index))
        .bind("127.0.0.1:8080")?
        .run()
        .await
}

More examples

You may consider checking out this directory for more examples.

Benchmarks

License

This project is licensed under either of

at your option.

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.