1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2025-02-13 17:45:14 +00:00
Actix Web is a powerful, pragmatic, and extremely fast web framework for Rust.
Find a file
2024-06-14 01:51:29 +00:00
.cargo ci: limit cargo hack concurrency 2024-05-19 12:06:20 +01:00
.github ci: fix doctest coverage 2024-06-10 04:15:58 +01:00
actix-files ci: external types checking (#3175) 2024-06-10 03:39:06 +01:00
actix-http ci: external types checking (#3175) 2024-06-10 03:39:06 +01:00
actix-http-test docs(http-test): use cargo-rdme 2024-06-10 23:31:45 +01:00
actix-multipart feat: Html responder (#3399) 2024-06-11 00:36:46 +01:00
actix-multipart-derive ci: rely more on justfiles (#3365) 2024-05-14 06:30:58 +01:00
actix-router ci: external types checking (#3175) 2024-06-10 03:39:06 +01:00
actix-test docs(test): intrgrate cargo-rdme 2024-06-10 23:23:38 +01:00
actix-web remove references to StaticFiles (#3400) 2024-06-14 01:51:29 +00:00
actix-web-actors ci: external types checking (#3175) 2024-06-10 03:39:06 +01:00
actix-web-codegen chore(actix-web-codegen): prepare release 4.3.0 2024-06-09 00:19:09 +01:00
awc ci: external types checking (#3175) 2024-06-10 03:39:06 +01:00
docs/graphs
scripts CI: Free space before test (#3303) 2024-03-11 15:34:04 +00:00
.codecov.yml
.gitignore
.prettierrc.yml
.rustfmt.toml
Cargo.toml ci: rely more on justfiles (#3365) 2024-05-14 06:30:58 +01:00
CHANGES.md
CODE_OF_CONDUCT.md
justfile docs: fix build 2024-06-10 23:54:16 +01:00
LICENSE-APACHE
LICENSE-MIT
README.md

Actix Web

Actix Web is a powerful, pragmatic, and extremely fast web framework for Rust

crates.io Documentation MSRV MIT or Apache 2.0 licensed Dependency Status
CI codecov downloads Chat on Discord

Features

  • Supports HTTP/1.x and HTTP/2
  • Streaming and pipelining
  • Powerful request routing with optional macros
  • Full Tokio compatibility
  • Keep-alive and slow requests handling
  • Client/server WebSockets support
  • Transparent content compression/decompression (br, gzip, deflate, zstd)
  • Multipart streams
  • Static assets
  • SSL support using OpenSSL or Rustls
  • Middlewares (Logger, Session, CORS, etc)
  • Integrates with the awc HTTP client
  • Runs on stable Rust 1.72+

Documentation

Example

Dependencies:

[dependencies]
actix-web = "4"

Code:

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

#[get("/hello/{name}")]
async fn greet(name: web::Path<String>) -> impl Responder {
    format!("Hello {name}!")
}

#[actix_web::main] // or #[tokio::main]
async fn main() -> std::io::Result<()> {
    HttpServer::new(|| {
        App::new().service(greet)
    })
    .bind(("127.0.0.1", 8080))?
    .run()
    .await
}

More Examples

You may consider checking out this directory for more examples.

Benchmarks

One of the fastest web frameworks available according to the TechEmpower Framework Benchmark.

License

This project is licensed under either of the following licenses, at your option:

Code of Conduct

Contribution to the actix/actix-web repo is organized under the terms of the Contributor Covenant. The Actix team promises to intervene to uphold that code of conduct.