This is my implementation of the full course from Jeremy Chone for the Axum web development framework in Rust published on his youtube channel. The Axum framework is built on top of the hyper HTTP library. It is a very fast and efficient framework built on top of the async/await syntax in Rust. This course will cover everything you need to know to get started with Axum and build web applications in Rust.
# Terminal 1 - To run the server.
cargo watch -q -c -w src/ -x "run"
# Terminal 2 - To run the quick_dev.
cargo watch -q -c -w tests/ -x "run --example quick_dev"
Notes
Sections Intro through Login Auth-Token Cookies are esstentially the set up of the project and the basic routing and handling of requests. 00::32::30 is where the actual implementation of the CRUD api begins.
Rust Axum Full Course - Web Development
This is my implementation of the full course from Jeremy Chone for the Axum web development framework in Rust published on his youtube channel. The Axum framework is built on top of the hyper HTTP library. It is a very fast and efficient framework built on top of the async/await syntax in Rust. This course will cover everything you need to know to get started with Axum and build web applications in Rust.
Links
Instructions
Notes