DEV Community

Discussion on: Rust or Go for web development?

 
selengora profile image
Selen Gora

Yeah exaclty what I’m thnking about choosing sample project and do it with both. Needed to ensure both languages are capable of web development first. Thank you :)

Thread Thread
 
deciduously profile image
Ben Lovy

Shameless self-plug, but I wrote a post about getting started with simple framework-less webdev for Rust:

This is how you can do it without a framework, but you can also try Rocket, Actix-Web, or Warp for a more full-featured starting point. For Go, I'd recommend not starting with a framework at all. Just use the standard library, and only add in a third-party solution if your app grows to the point where you need it.

Thread Thread
 
selengora profile image
Selen Gora

Added to my reading list 😍
Appreciate for your help.