Software Engineer and full-time Rustacean. While Rust is my primary language, I am also fluent in Python and Typescript. I'm also currently making a game with Godot using C#.
Software Engineer and full-time Rustacean. While Rust is my primary language, I am also fluent in Python and Typescript. I'm also currently making a game with Godot using C#.
For web servers, definitely check out rocket.rs and also warp. For the latter you will also want to brush up on rust Async / await. There are some really good YouTube videos about rust Async as well as a separate "Async book"
For web client, my favourite is yew but several other exist as well.
Have a look at arewewebyet.org for a catalogue of what's available
Software Engineer and full-time Rustacean. While Rust is my primary language, I am also fluent in Python and Typescript. I'm also currently making a game with Godot using C#.
Top comments (11)
rust-lang.org/learn
Is there anything you were after in particular?
The official book is very good. Not many languages have a good official book, but Rust is among those that do.
yes for web dev
For web servers, definitely check out rocket.rs and also warp. For the latter you will also want to brush up on rust Async / await. There are some really good YouTube videos about rust Async as well as a separate "Async book"
For web client, my favourite is yew but several other exist as well.
Have a look at arewewebyet.org for a catalogue of what's available
Thanks alot
Try solve couple rust kata on codewars
I wrote a bit about frontend development with Rust here:
dev.to/kayis/series/9849
Definitely doc.rust-lang.org/book/
It would be hard to find something better
Are there any courses online you could recomend?
github.com/rust-lang/rustlings/
Try re-writing any memory-inefficient compiler to a Rust library ~ seems to be all the rave these days 😁 ...