What services and technologies do you use when you'd like to quickly build a web app which may never be more than a prototype, but may also turn into something real? A big aspect of what I'm wondering is about automatically setting something up for keeping local/production environments in sync, quickly deploying to production, and not having to mess with a bunch of server configuration things, user accounts, security, etc.
Ask HN: What's your favorite way of getting a web app up quickly in 2018?
1–10 of 569 posts
Re: Ask HN: What's your favorite way of getting a web app up quickly in 2018?
#2Re: Ask HN: What's your favorite way of getting a web app up quickly in 2018?
#3create-react-app
Re: Ask HN: What's your favorite way of getting a web app up quickly in 2018?
#4create-react-app
Re: Ask HN: What's your favorite way of getting a web app up quickly in 2018?
#5- Scott Bell
Re: Ask HN: What's your favorite way of getting a web app up quickly in 2018?
#6My opinion is that when you're starting out, just go with a PaaS like Heroku. You can simply maintain a separate dev/prod branch and it'll automatically update the server.
All the issues you mentioned can be solved it just takes some investment somewhere (time if you do it today yourself / money to pay a PaaS or someone else to do it).
We personally use Kubernetes to solve these issues since we get stateless builds and simply have environment variables that change things like database connections, api keys, etc between our various environments. But again this took a few weeks to setup.
Re: Ask HN: What's your favorite way of getting a web app up quickly in 2018?
#7Re: Ask HN: What's your favorite way of getting a web app up quickly in 2018?
#8Re: Ask HN: What's your favorite way of getting a web app up quickly in 2018?
#92. create-react-app for front-end
3. digital ocean for hosting
I just cp files from local to server and use a couple different bash scripts for dev vs prod.