TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: What do you use serverless for?

8 pointsby interrupt_over 4 years ago

6 comments

el_dev_hellover 4 years ago
I use the serverless framework for simple REST APIs. This is especially beneficial if you&#x27;re hooking into other cloud provider tools (such as S3, SQS, ect. with AWS).<p>The 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.<p>I&#x27;ve found this works very well for internal glue tools that aren&#x27;t majorly affected by cold starts.<p>One nice example was building a quick and dirty internal tool for L3 support staff to alter certain client records. It wasn&#x27;t appropriate to hand out DB access and it wasn&#x27;t a high enough priority to create a new feature in our &quot;real&quot; support system, so I build a few basic endpoints (with strict rules) and passed it off to the team. They&#x27;re using Postman to make the changes as needed (using a JWT for auth from our main application).
GoldenMonkeyover 4 years ago
If we are talking about the ‘serverless’ framework.<p>I use it to stand up all resources for Amazon Web Services. The web gateway api, dynamodb tables, lamda code.<p>It is invaluable. Saves so much time. No need to standup resources by hand.
jamiewebover 4 years ago
I use Cloudflare Workers for:<p>* Serving a standard security.txt file for all websites within my account<p>* Automatically rewriting the case of URLs for a CMS that doesn&#x27;t support case-insensitivity<p>* Adding security headers to sites that don&#x27;t support adding them locally (e.g. third-party hosting)<p>* Proxying requests elsewhere directly from the &#x27;edge&#x27;, rather than having to run my own proxy<p>* Serving static config files, e.g. mta-sts.txt, proxy.pac
评论 #24486901 未加载
ArtWombover 4 years ago
Modern serverless platofrms include distributed data tiers like Cloudflare KV so theoretically at least the only problem domain they can&#x27;t handle is secure communications and secrets requiring higher levels of auditing
was_boringover 4 years ago
For stuff I don’t really care about meeting any sort of SLA.
astuyvenbergover 4 years ago
Basically anything and everything that I can surmise will complete within 15 minutes.
评论 #24484088 未加载