FunctionPriceBook

The cheapest serverless for a side project

By Editorial team · 2026-02-24

In short: For a side project the cheapest serverless is the free tier. Cloudflare Workers (100k req/day, no egress, no card-trap) and AWS Lambda (1M req + 400k GB-s/month, perpetual) are the strongest picks; Google Cloud Run gives 2M requests/month free. Avoid platforms with a fixed minimum (Vercel Pro $20/seat, Workers Paid $5) until you actually outgrow free, and watch egress on hyperscalers.

A side project doesn’t need the cheapest paid tier — it needs to stay free. The good news: serverless free tiers in 2026 are generous enough that a real small app can run at $0 forever. Here’s how to pick.

The strongest free tiers

PlatformFree allowanceEgressCatch
Cloudflare Workers100k req/day (~3M/mo)$010 ms CPU/invocation on free
AWS Lambda1M req + 400k GB-s/mo~$0.09/GBwatch API Gateway/NAT
Google Cloud Run2M req + 360k GiB-s/motieredfree tier in US regions only
Azure Functions1M req + 400k GB-s/mo100 GB free
Deno Deploy1M req + 15 CPU-hours/mo20 GB freeJS/TS only
Supabase500k invocations/moshared poolbest if you use Supabase

Snapshot captured June 2026 — see the full most-generous-free-tier ranking.

How to actually stay free

  1. Pick a platform with no fixed minimum. Cloudflare Workers free, Lambda, Cloud Run and Azure Functions cost $0 until you exceed the free tier — no $5 or $20/mo entry fee.
  2. Right-size memory. GB-seconds = memory × duration; the free GB-s allowance stretches much further at 128-256 MB than at 1 GB.
  3. Mind egress. A side project that serves images or large JSON can blow the hyperscaler egress allowance — Cloudflare Workers charges none, which is why it’s the safest free pick.
  4. Avoid card-trap trials. The perpetual FaaS free tiers renew monthly; broad cloud “free trial” credits expire. Stay on the former.

What to avoid (for now)

Vercel Hobby is great but hard-capped, and its Pro plan is $20/seat. Railway has no always-free runtime ($5/mo Hobby). Fargate and Fly.io have no free tier. These are fine once you’ve outgrown free — not for a $0 hobby project.

Bottom line

For a side project, start on Cloudflare Workers or AWS Lambda, keep memory low, and watch egress. You’ll likely never see a bill. When you do outgrow free, the calculator and scenarios will tell you what comes next.

Frequently asked questions

What is the best free serverless platform for a side project?

Cloudflare Workers (100k requests/day, no egress charges, near-zero cold start) and AWS Lambda (1M requests + 400k GB-s/month, renewing forever) are the best free picks. Google Cloud Run gives 2M requests/month. All run a small side project at $0 indefinitely as long as you stay inside the free tier.

Will my side project's free tier expire after 12 months?

No — the FaaS free tiers (Lambda, Cloudflare Workers, Cloud Run/Functions, Azure Functions, Scaleway, DigitalOcean Functions, Supabase, Deno Deploy) are perpetual and renew every month. That's different from broad cloud 'free trial' credits, which do expire. Render's free tier is perpetual but spins down after 15 minutes idle with a slow cold start.

Related articles

Last updated: 2026-02-24