Live data from Hacker News

Ask HN: How are you deploying your lambdas these days?

news.ycombinator.com

1–10 of 16 posts

Re: Ask HN: How are you deploying your lambdas these days?

#6
post #4

Vercel / Next has them built into the framework these days. You just write a function and it deploys automagically with the rest of the frontend. I think they use Cloudflare Workers for that instead of AWS...? Not sure. https://vercel.com/docs/functions

That sounds right to me though I always deploy my nextJS projects on a VPS, so it just transforms them behind the scenes to the equivalent of self hosted node hosted "lambdas" - only without the associated more aggressive timeouts around Vercel unless you're a paying customer.

Re: Ask HN: How are you deploying your lambdas these days?

#9
We’re building https://rx.run so you don’t have to think about these sorts of things and can just ship your app.

If you can write a function, you can deploy to the cloud. No infra or deployments to configure or manage. Storage, auth, payments, and more are all built right in.

Currently in beta and TypeScript only but support for all mainstream languages coming soon.

Re: Ask HN: How are you deploying your lambdas these days?

#10
post #9

We’re building https://rx.run so you don’t have to think about these sorts of things and can just ship your app. If you can write a function, you can deploy to the cloud. No infra or deployments to configure or manage. Storage, auth, payments, and more are all built right in. Currently in beta and TypeScript only but support for all mainstream languages coming soon.

I wanted to expand and say that if you are keen on writing and managing infra and running it yourself, besides Serverless Framework, SST, CDK, arc.codes, and Terraform are all good options.
Post reply on HN