DEV Community

Discussion on: Where Can I Start with Rust Programming ?

Collapse
 
stevepryde profile image
Steve Pryde

rust-lang.org/learn

Is there anything you were after in particular?

Collapse
 
dmbaturin profile image
Daniil Baturin

The official book is very good. Not many languages have a good official book, but Rust is among those that do.

Collapse
 
reuben21 profile image
Reuben Coutinho

yes for web dev

Collapse
 
stevepryde profile image
Steve Pryde • Edited

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

Thread Thread
 
reuben21 profile image
Reuben Coutinho

Thanks alot