This is a simple project I’m using to get my hands dirty with Axum, a web framework for the Rust programming language.
It’s a sandbox. There is no grand master plan or end product in mind here.
I'm currently exploring how to:
- Route different web requests.
- Handle user data (like names and emails).
- Work with "nested" paths (organizing different parts of the site).
- Manage basic responses, like simple text or data-heavy lists.
To learn! Rust can be a bit of a mountain to climb, and Axum is one of the most popular ways to build web servers with it. I’m just seeing "where it goes", poking the code, seeing what breaks, and figuring out how it all fits together.
# The server will start at http://localhost:3000.
cargo run