What is the best typed language for back end web development?
After programming the backend for my current project in a non-typed language I never want to go that route again.
I think actually that the frontend project with all of its thousand of files and components is easier to handle just because typescript helps me so much.
15 comments
[ 4.3 ms ] story [ 50.0 ms ] threadLanguage preferences are very personal but I personally like Golang. It's kind of like a "batteries included" language and deploying Go, which is copying a binary to a server is awesome!
Nowadays, deploying any project should just be one docker build . away whatever the language.
Nice bonus: the resulting app is native and fast.
I'd do a simple CRUD app in all 4 of them and see which one I liked best from tooling to language design.
Rust is great but more clunky. I'm under the impression F# is a viable alternative.
declare(strict_types=1);
Can’t recommend it enough.