Ask HN: What's your favorite way of getting a web app up quickly in 2018?
61–70 of 569 posts
Re: Ask HN: What's your favorite way of getting a web app up quickly in 2018?
#62Re: Ask HN: What's your favorite way of getting a web app up quickly in 2018?
#63I completely get that other languages have huge benefits over Ruby. Golang being compiled or Java running anywhere, etc... And ruby is slow, totally understood.
But if youre talking about getting a functioning webapp up and running quickly... no way anyone is beating a Rails dev in setting one up. The piping and scaffolding are all built in and the gem ecosystem (for web apps specifically) is so well maintained and robust that you can drop it in to your app and get a functioning product with ease.
I know that's a loaded statement bc Rails becomes not so great in other cases like building speedy backend jobs. But for a small user-facing web app it's hands down the best.
Re: Ask HN: What's your favorite way of getting a web app up quickly in 2018?
#64I've been using this combo in production for https://www.cozycal.com for a year with no problems.
Likes: - More control than hosted environments - Dirt cheap
Dislikes: - More responsibility than hosted environments
Re: Ask HN: What's your favorite way of getting a web app up quickly in 2018?
#65Re: Ask HN: What's your favorite way of getting a web app up quickly in 2018?
#66frontend hosting: surge.sh (free)
backend: node + socket.io (usually on a separate domain with CORS)
backend hosting: heroku (free)
database: MongoDB
database host: mlab (free)
everything in TypeScript, of course, because when you're in a hurry, you simply don't have time for your code to not be typesafe! (actually though, TS is a maaaaajor time saver, especially for smaller projects!)
Re: Ask HN: What's your favorite way of getting a web app up quickly in 2018?
#67For some reason people seem to constant doubt Ruby-ists and Rails Devs. I completely get that other languages have huge benefits over Ruby. Golang being compiled or Java running anywhere, etc... And ruby is slow, totally understood. But if youre talking about getting a functioning webapp up and running quickly ... no way anyone is beating a Rails dev in setting one up. The piping and scaffolding are all built in and…
Re: Ask HN: What's your favorite way of getting a web app up quickly in 2018?
#68For some reason people seem to constant doubt Ruby-ists and Rails Devs. I completely get that other languages have huge benefits over Ruby. Golang being compiled or Java running anywhere, etc... And ruby is slow, totally understood. But if youre talking about getting a functioning webapp up and running quickly ... no way anyone is beating a Rails dev in setting one up. The piping and scaffolding are all built in and…
Re: Ask HN: What's your favorite way of getting a web app up quickly in 2018?
#69API: flask + MySQL / Redis
UI: create-react-app
Use docker pre-build instances for MySQL or Redis or Nginx
If you have extra time in hand
Nginx --> flask
Re: Ask HN: What's your favorite way of getting a web app up quickly in 2018?
#70For some reason people seem to constant doubt Ruby-ists and Rails Devs. I completely get that other languages have huge benefits over Ruby. Golang being compiled or Java running anywhere, etc... And ruby is slow, totally understood. But if youre talking about getting a functioning webapp up and running quickly ... no way anyone is beating a Rails dev in setting one up. The piping and scaffolding are all built in and…
IMO it would be almost as good even if the code execution were as slow as Python or Ruby.