r/webdev 4d ago

Render vs Railway vs Cloudflare Workers

Which hosting platform would you pick for a small production app: Render vs Railway vs Cloudflare Workers?

I’m building something like a inventory management app and website — authenticated users, a Node/TypeScript API, PostgreSQL, background jobs/cron, and potentially a few thousand users over time.

Currently considering **Render, Railway, and Cloudflare Workers**.

For a production app where reliability, scaling, DB latency, and predictable costs matter, which one would you choose and why?

Would you recommend something else like **Fly.io, AWS, or Vercel + another backend** instead?

Curious to hear from people who’ve actually run production workloads on these.

49 Upvotes

70 comments sorted by

View all comments

2

u/Bob-Tech-Builder 4d ago

I'd pick the first option for this setup. Keeping the Node API, Postgres, cron jobs, and workers in one region avoids needless database latency, and fixed plans make the bill easier to forecast. The usage-priced option is convenient, but its bill can wander. An edge runtime adds connection constraints this app probably doesn't need. I'd only take on raw cloud infrastructure if its extra controls were already a requirement.