If you were going to set up a server-backed website, what language/library/framework would you use these days (& why)?
It's been several millennia since I looked at Rails, Sinatra, Django etc...
Conversation
Say more about what the server needs to do and in what usage context? If it’s CRUD-ish stuff and modest scale, I’d stick with whatever you already know.
1
3
Pretty basic CRUD app. I wrote some Rails, but so long ago I suspect it's not really relevant any more. I know Python better these days than I know Ruby.
2
Replying to
Gotcha. For CRUD, if Python’s your jam, then Flask is a well-trodden but tightly wrought option. Django is more of a Rails parallel if you’re pretty looking for something with more parts included.
I second this, Flask is my goto for CRUD apps (esp if you want to use Python). Ruby has Sinatra if that's more your jam
2


