TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

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

7 点作者 _samjarman12 个月前
Noting that The Serverless Framework V4 is changing licensing models, has anyone found any alternates? Built their own?

12 条评论

ivylee11 个月前
I&#x27;ve been using AWS Chalice[1] (Python), which powers SignalsTalk[2], YCVerify[3] and AirExif[4].<p>[1]: <a href="https:&#x2F;&#x2F;github.com&#x2F;aws&#x2F;chalice">https:&#x2F;&#x2F;github.com&#x2F;aws&#x2F;chalice</a><p>[2]: <a href="https:&#x2F;&#x2F;www.signalstalk.com&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.signalstalk.com&#x2F;</a><p>[3]: <a href="https:&#x2F;&#x2F;www.ycverify.com&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.ycverify.com&#x2F;</a><p>[4]: <a href="https:&#x2F;&#x2F;www.airexif.com&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.airexif.com&#x2F;</a>
giorgioz12 个月前
I switched from the Serverless Framework to AWS-CDK 5 years ago <a href="https:&#x2F;&#x2F;aws.amazon.com&#x2F;cdk&#x2F;" rel="nofollow">https:&#x2F;&#x2F;aws.amazon.com&#x2F;cdk&#x2F;</a><p>I use the Javascript library of aws-cdk
fitzgera1d11 个月前
Serverless Framework V.4 looks awesome actually: <a href="https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=UQL_PPJUFOU" rel="nofollow">https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=UQL_PPJUFOU</a>
solardev12 个月前
Related discussion: <a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=40589152">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=40589152</a>
thorin11 个月前
Can you briefly explain what you think the issues are? I&#x27;m just moving from azure functions over to lambda. Code will likely be dotnet and I just assumed I&#x27;d use the aws provided tools: codecommit&#x2F;build&#x2F;pipeline&#x2F;deploy. Azure devops did the job fine last time.
solardev12 个月前
Vercel &#x2F; 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.<p><a href="https:&#x2F;&#x2F;vercel.com&#x2F;docs&#x2F;functions" rel="nofollow">https:&#x2F;&#x2F;vercel.com&#x2F;docs&#x2F;functions</a>
评论 #40599787 未加载
dj0k3r11 个月前
I&#x27;ve been using AWS CDK which now supports go. The only gotcha is that I have to cleanup the build cache occasionally which can easily build up-to several gigs over time.
rozenmd12 个月前
My business has about a dozen lambdas that I configure using terraform, and to deploy I use a regular CI service with the AWS CLI installed.<p>Been working great for about 3.5 years now
whinvik11 个月前
At least for Python, it&#x27;s usually easy. Just build a Docker image and push from Github action after merge and it&#x27;s deployed.
metatranca11 个月前
For JS I use <a href="https:&#x2F;&#x2F;github.com&#x2F;vercel&#x2F;ncc">https:&#x2F;&#x2F;github.com&#x2F;vercel&#x2F;ncc</a>
khalidx11 个月前
We’re building <a href="https:&#x2F;&#x2F;rx.run" rel="nofollow">https:&#x2F;&#x2F;rx.run</a> so you don’t have to think about these sorts of things and can just ship your app.<p>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.<p>Currently in beta and TypeScript only but support for all mainstream languages coming soon.
评论 #40606566 未加载
TheJCDenton12 个月前
AWS SAM. I&#x27;m using Go.
评论 #40601476 未加载