axum
is a web application framework that focuses on ergonomics and modularity.
More information about this crate can be found in the crate documentation.
tower
] and [tower-http
] ecosystem of
middleware, services, and utilities.In particular the last point is what sets axum
apart from other frameworks.
axum
doesn't have its own middleware system but instead uses
[tower::Service
]. This means axum
gets timeouts, tracing, compression,
authorization, and more, for free. It also enables you to share middleware with
applications written using [hyper
] or [tonic
].
```rust use axum::{prelude::*, response::IntoResponse}; use http::StatusCode; use serde::{Deserialize, Serialize}; use std::net::SocketAddr;
async fn main() {
// build our application with a route
let app =
// GET /
goes to root
route("/", get(root))
// POST /users
goes to create_user
.route("/users", post(create_user));
// run our app with hyper
let addr = SocketAddr::from(([127, 0, 0, 1], 3000));
tracing::debug!("listening on {}", addr);
hyper::Server::bind(&addr)
.serve(app.into_make_service())
.await
.unwrap();
}
// basic handler that responds with a static string async fn root() -> &'static str { "Hello, World!" }
async fn create_user(
// this argument tells axum to parse the request body
// as JSON into a CreateUser
type
extract::Json(payload): extract::Json
// this will be converted into an JSON response
// with a status code of `201 Created`
(StatusCode::CREATED, response::Json(user))
}
// the input to our create_user
handler
struct CreateUser { username: String, }
// the output to our create_user
handler
struct User { id: u64, username: String, } ```
See the crate documentation for way more examples.
The [examples] folder contains various examples of how to use axum
. The
[docs] also have lots of examples
In the axum
's repo we also have a number of examples showing how
to put everything together. You're also welcome to ask in the Discord
channel or open an [issue] with your question.
:balloon: Thanks for your help improving the project! We are so happy to have
you! We have a contributing guide to help you get involved in the
axum
project.
This project is licensed under the MIT license.
Unless you explicitly state otherwise, any contribution intentionally submitted
for inclusion in axum
by you, shall be licensed as MIT, without any
additional terms or conditions.