Ask HN: What's your favorite way of getting a web app up quickly in 2018?
411–420 of 569 posts
Re: Ask HN: What's your favorite way of getting a web app up quickly in 2018?
#412Earlier quoted context omitted.
I wonder why Ruby ended up in the negative coefficient group instead of exhibiting similar characteristics to Python, for example.
It's quite an interesting study to read, and not long. I recommend giving it a few minutes to answer that question.
Actually, the link is not working on mobile. Maybe it will work on my desktop.
Re: Ask HN: What's your favorite way of getting a web app up quickly in 2018?
#413Quickly? Firebase + React. Seriously, don’t overlook this combo. Auth just works. Hosting built in, no backend or database server to maintain. No API, just subscribe to a collection right from the view. It just works (and is easily swapped for the real deal if you need it). I made a guide/boilerplate to show you how (includes auth, CRUD, full text search, stripe subscriptions): http://getfirefly.org/
yerp, by 2018, UI + SaaS backends is often the easiest way to get something deployed ... provided you want to deploy essentially the same thing other people already have + some customization .. .. what's going to be neat to see is how that "essentially the same thing" changes over time. deepstreamhub.com is another neat SaaS that's worth looking into for some cases that Firebase might not handle as well ... there are…
Re: Ask HN: What's your favorite way of getting a web app up quickly in 2018?
#414Earlier quoted context omitted.
I second this; Go + React.js (Vue.js in my case) I talked about it just a couple of hours ago [1]. [1] https://news.ycombinator.com/item?id=17215658
How do you handle server side rendering? This is one of the reasons I chose to go full Node+React.
Re: Ask HN: What's your favorite way of getting a web app up quickly in 2018?
#415mvn install; eb deploy
Re: Ask HN: What's your favorite way of getting a web app up quickly in 2018?
#416Re: Ask HN: What's your favorite way of getting a web app up quickly in 2018?
#417Vanilla php + html5up + sqlite3. Everyone else here is trying to be stylish and fancy. Your customers don't care what language it's in or whether the code is beautiful. No cutting edge incomplete frameworks, convoluted tooling, piles of inaccurate documentation to read, inexplicable cryptic error messages with a bunch of incorrect solutions on stack overflow, or other incompetently over engineered bullshit. Just go a…
This might be true if you're creating a very simple web site that is never meant to be a real app. If you're creating a more complex web app, with authentication, user management, billing, admin pages, etc. you are better off with frameworks such as Laravel, Symphony or Slim if you are using PHP.
...it is also why php is not really any significantly better choice than any other framework/language combination.
The benefits of ‘plain php’ (simplicity) disappear quite quickly when you’re doing anything non trivial.
I would never choose php without one of those framework stacks; it doesn’t scale, its prone to hideous security issues and its a fugly mess of reinventing the wheel.
Frankly, anyone doing this these days has no idea what they’re doing.
Re: Ask HN: What's your favorite way of getting a web app up quickly in 2018?
#418Frontend:- React/Vue/Angular Backend:- Spring Boot with Kotlin I must say I am so impressed with what Pivotal did with Spring Boot. It’s amazing.
Re: Ask HN: What's your favorite way of getting a web app up quickly in 2018?
#419Vanilla php + html5up + sqlite3. Everyone else here is trying to be stylish and fancy. Your customers don't care what language it's in or whether the code is beautiful. No cutting edge incomplete frameworks, convoluted tooling, piles of inaccurate documentation to read, inexplicable cryptic error messages with a bunch of incorrect solutions on stack overflow, or other incompetently over engineered bullshit. Just go a…
Thank you. I've never come across html5up [1] before, but the templates there are just what I'm after at the moment. 1. https://html5up.net/
Re: Ask HN: What's your favorite way of getting a web app up quickly in 2018?
#420Heroku is still a great choice if you're willing to pay to never think about infrastructure. On the other hand if you're willing to ask for help there are plenty of freelance IT admins who would set up a digital ocean box with the DIY equivalent of Heroku.
I have read similar comments to the ones here about scaling and cost, so I might bump into that at some point.