Ask HN: What do you use serverless for?
1–10 of 11 posts
Re: Ask HN: What do you use serverless for?
#2Re: Ask HN: What do you use serverless for?
#3I use it to stand up all resources for Amazon Web Services. The web gateway api, dynamodb tables, lamda code.
It is invaluable. Saves so much time. No need to standup resources by hand.
Re: Ask HN: What do you use serverless for?
#4Re: Ask HN: What do you use serverless for?
#5Re: Ask HN: What do you use serverless for?
#6Basically anything and everything that I can surmise will complete within 15 minutes.
Re: Ask HN: What do you use serverless for?
#7* Serving a standard security.txt file for all websites within my account
* Automatically rewriting the case of URLs for a CMS that doesn't support case-insensitivity
* Adding security headers to sites that don't support adding them locally (e.g. third-party hosting)
* Proxying requests elsewhere directly from the 'edge', rather than having to run my own proxy
* Serving static config files, e.g. mta-sts.txt, proxy.pac
Re: Ask HN: What do you use serverless for?
#8I use Cloudflare Workers for: * Serving a standard security.txt file for all websites within my account * Automatically rewriting the case of URLs for a CMS that doesn't support case-insensitivity * Adding security headers to sites that don't support adding them locally (e.g. third-party hosting) * Proxying requests elsewhere directly from the 'edge', rather than having to run my own proxy * Serving static config fil…
Re: Ask HN: What do you use serverless for?
#9The main reason is speed of deployment and overhead. I can push the code to a repo and boom -- a working backend with basically no infra config.
I've found this works very well for internal glue tools that aren't majorly affected by cold starts.
One nice example was building a quick and dirty internal tool for L3 support staff to alter certain client records. It wasn't appropriate to hand out DB access and it wasn't a high enough priority to create a new feature in our "real" support system, so I build a few basic endpoints (with strict rules) and passed it off to the team. They're using Postman to make the changes as needed (using a JWT for auth from our main application).