Hey there! I’m starting my journey to the learning of Rust. I have been coding only with Python for 6 years now and last year, I had to code in JavaScript using VueJS for my job (I never workedeon frontend).
Now, I have a personal project idea which I’d like to create. I could do it in Python but I want to learn Rust. I’ve looked up on the Internet but may be some answers are too old or someone here can point me to something I haven’t seen yet.
What do you recommand for webdev? I guess I need to code the back in Rust and use a JavaScript framework for the front. My backend will be for a REST API (my app will need to manage users and organisations).
Bonus question if you can recommend a BDD framework. I think there is something named Cucumber. Is it good?
Thanks a lot ♥️🦀
For frontend, there are cool Rust frameworks like Yew, but if it’s a “real” project then just go with a standard JS framework like Next.js instead.
For backend, Next.js (and many others) can also do backend, but if you want to use Rust, then I recommend
axum
. It’s pretty much my goto Rust backend library.