Vanilla 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…
Ask HN: What's your favorite way of getting a web app up quickly in 2018?
211–220 of 569 posts
Re: Ask HN: What's your favorite way of getting a web app up quickly in 2018?
#212Earlier quoted context omitted.
Too expensive to be worth it. I'm totally fine with outsourcing stuff that is difficult and third parties can do better, but in this case the amount of stuff you're playing egregious "cloud" pricing for is too much. Just spend a handful of days learning one of the open source stacks and you'll be set for life. It's totally worth it assuming you'll be making more than 1 app ever.
Opensource alternative to firebase: couchdb . Less features but the essentials are there...
Re: Ask HN: What's your favorite way of getting a web app up quickly in 2018?
#213Earlier quoted context omitted.
it's worse to you, not the client. client actuality doesn't care and PHP is legacy I guess?
Actually they do if they have to maintain it or want hire really good developers to maintain it. Not saying PHP doesn't meet those criteria, it might in a given region or situation, but just saying your dismissal of this consideration is way off base. Good luck hiring anyone passionate about good software development or recently graduating from decent CS department to work on your PHP apps. I'm sure you are a great d…
What? Half the programmers I know in NYC write PHP. The other half write a combo of Java/C#/Python. These aren't programmers working for startups - they are working for companies and the government.
PHP is used everywhere. Except maybe in SFO (and surrounding area).
I mean look at the job listings for NYC, DC, Miami, Baltimore, Louisville, etc, etc.
Look I know this board is focused on Silicon Valley, but it's a big world out there.
Re: Ask HN: What's your favorite way of getting a web app up quickly in 2018?
#214Angular, host on S3 and serverless backend with AWS Lambda. Build a client, write your routes and your good to go. Also scales really well.
Re: Ask HN: What's your favorite way of getting a web app up quickly in 2018?
#215The easiest thing to do is Heroku. They've really nailed it down and the +$2/month for their basic instance is easily worth it if you don't want to spend the time getting everything setup. Automation requires infrastructure and infrastructure is cheap only if you know how to set it up. I run ~3 side projects using Heroku to host a Django project with a GraphQL API talking to Heroku Postgres and Netlify the host the R…
Re: Ask HN: What's your favorite way of getting a web app up quickly in 2018?
#216MeteorJS (Node) + React for https://eddtor.com/editor , really quick (1 month from idea to launch), more recently going for Go full stack (server side + template/html package for front-end). After staying on the bleeding edge of Javascript ecosystem for about three years, I missed the simplicity of a reliable server-side language + the battle tested JQuery (I know, right?!) plug-ins.
Re: Ask HN: What's your favorite way of getting a web app up quickly in 2018?
#217Vanilla 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…
Re: Ask HN: What's your favorite way of getting a web app up quickly in 2018?
#218React, Express, Postgress, Nginx all in Docker containers managed with Docker Machine on a Digital Ocean box. It may not be the most simple/quick solution, but with some copy/pasting I can get something up rather quick and it's super flexible. Need OCR? Add a Tesseract container. Need a fileserver? Etc.
Re: Ask HN: What's your favorite way of getting a web app up quickly in 2018?
#219Re: Ask HN: What's your favorite way of getting a web app up quickly in 2018?
#220The easiest thing to do is Heroku. They've really nailed it down and the +$2/month for their basic instance is easily worth it if you don't want to spend the time getting everything setup. Automation requires infrastructure and infrastructure is cheap only if you know how to set it up. I run ~3 side projects using Heroku to host a Django project with a GraphQL API talking to Heroku Postgres and Netlify the host the R…
What do you use to connect Django models / Postgres to GraphQL?