Your language, your runtime
Deploy Node.js, Python, or Go functions from the same platform. Same API contract, same hot containers, same observability.
How it works
Same platform, any language
Pick a language
Choose Node.js 22, Python 3.12, or Go 1.22 when creating a function. Switch any time.
Write your code
Use any package manager, import any library. Full language support — no sandboxing restrictions.
Deploy
Same hot container model for all runtimes. 5–50ms latency regardless of language.
Example
The same handler in 3 languages
export async function handler(event, context) { const { name } = event.body ?? {}; // Any npm package works — fetch, axios, openai... const res = await fetch("https://api.example.com/greet", { method: "POST", body: JSON.stringify({ name }), }); return { statusCode: 200, body: { message: `Hello, ${name}!` }, }; }
Features
Full runtime support
Node.js 22
Full ESM, latest V8 engine, any npm package. The fastest way to ship a JS API.
Python 3.12
async/await natively, aiohttp, pip packages via layers. Great for AI and data workloads.
Go 1.22
Compiled binary performance in containers. Perfect for CPU-bound or latency-sensitive tasks.
Unified event contract
Same event, context, and response schema for all runtimes. Migrate between languages without changing callers.
Get started free
Deploy your first function in 60 seconds. No credit card required.