Axum
Like
Ergonomic and modular web framework built with Tokio, Tower, and Hyper.
Cost / License
- Free
- Open Source
Platforms
- Self-Hosted
- Rust
Features
- Modular System
Tags
- Software Framework
- web-framework
- Developer Tools
Axum information
No comments or reviews, maybe you want to be first?
Post comment/reviewWhat is Axum?
Axum is a web application framework that focuses on ergonomics and modularity.
Features:
- Route requests to handlers with a macro free API.
- Declaratively parse requests using extractors.
- Simple and predictable error handling model.
- Generate responses with minimal boilerplate.
- Take full advantage of the 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.

