-
Book Overview & Buying
-
Table Of Contents
Rust Web Programming - Third Edition
By :
In this section, we are merely going to get an Actix server running using the Actix Web framework before connecting our server to our core code.
Why Actix Web?
This is now the third edition of the book. Several people have emailed me asking about a range of different web frameworks. The truth is, the choice of framework is close to trivial when it comes to implementing the API of that web framework. If you structure your code well, you should be able to switch these frameworks with minimal effort. Throughout this book, we will structure our code so we can use multiple different web frameworks at the same time. Actix is chosen for the book because we must choose one framework to demonstrate web programming concepts, and Actix is the most mature and stable web framework at the time of writing this book.
The GitHub repository of this book will also have the implementations of Axum, Rocket, and Hyper, but they will not be covered directly...