(no title)
joshvince | 1 year ago
One of the compelling reasons to write JS on the server was to have the same language and ecosystem in the client and server, and things like Turbo for Rails really go a long way towards delivering on that for Ruby (although of course you still need to understand javascript and browsers.)
That said, if you're already familiar with something else, then pick the most mature batteries-included framework in that language. Languages are just a tool for the job, it's incredibly unlikely as a solo dev that you can pick a "wrong" one.
arromatic|1 year ago
Lio|1 year ago
Languages, libraries and frameworks constantly evolving so it's a moving target too.
I think most people will just recommend the stack they know best unless you have more specific criteria.
Again, I don't think you can go wrong with Rails for web apps as a solo dev.
You get a lot of utility out of the box with Rails and you can also easily remove things you know you won't need.
e.g. Little utilities like Array#to_sentence[1] might not seem important at first but they're real time savers when you're working on your own to get something out the door.
1. https://api.rubyonrails.org/classes/Array.html#method-i-to_s...
joshvince|1 year ago