Skip to content
← Back to Blog

Thursday, December 15th 2022

Vercel Edge Functions are now generally available

Faster, cheaper, more flexible compute for your workloads.

Posted by

Avatar for javivelasco

Javi Velasco

Software Engineer, Infrastructure

Avatar for feugy

Damien Simonin Feugas

Software Engineer

Avatar for marcgreenstock

Marc Greenstock

Director of Engineering, Infrastructure

Avatar for craigandrews

Craig Andrews

Software Engineer, Infrastructure

Avatar for schniz

Gal Schlezinger

Software Engineer, Infrastructure

Avatar for nuta

Seiya Nuta

Software Engineer

Avatar for kikobeats

Kiko Beats

Software Engineer, Infrastructure

Avatar for ethomson

Edward Thomson

Director of Product, Ship

Avatar for angelazhang

Angela Zhang

Technical Program Manager, Engineering

Avatar for s3prototype

Shaquil Hansford

Content Developer

Avatar for amyburns

Amy Burns

Senior DX Engineer

Access to fast, global compute can give developers more flexibility to build rich experiences, regardless of their users' physical location or network speed. Vercel's Edge Functions aim to bring this capability into every developer's toolkit for building on the Web.

This past summer, alongside our GA of Edge Middleware, we released Edge Functions to Public Beta. During our beta period, our Edge Network has seen over 30 billion Edge Function invocations.

Since launching, we’ve made Edge Functions faster, more flexible, and capable of even larger workloads:

Now, we’re excited to announce that beginning today, Edge Functions are now generally available (GA) for all customers.

What are Edge Functions?

Vercel Edge Functions are JavaScript, TypeScript, or WebAssembly functions that are generally more efficient and faster than traditional Serverless compute, since they operate within a much leaner runtime. Deployed globally by default, Edge Functions run in the region closest to the request for the lowest latency possible.

pages/api/hello.ts
export const config = {
runtime: 'edge'
}
export default function handler(req: Request) {
return new Response("Hello World");
}
A hello world Edge Function in Next.js. Edge Functions are natively available in Next.js, SvelteKit, Astro, and Nuxt or as a standalone function. runtime: 'edge' can be leveraged with Vercel CLI 28.9.0 and above.

Unlike Edge Middleware, Functions run after the cache, and therefore can both cache and return responses, making them great for data fetching or rewrites.

"We’ve been using an Edge API Route to proxy requests to our backend and rewrite headers on the fly. The lightweight nature of the Edge Runtime and the ability to stream responses ensures that response times stay fast. Additionally, the switch from regular API Routes reduced our costs significantly."

Connor BärSenior Frontend Engineer, Web Platform, SumUp

Vercel Edge Functions are natively supported by Next.js, and many other frameworks like Nuxt, Astro, and SvelteKit. Edge Functions can also be created as a standalone function in Vercel CLI.

In Next.js, set your app’s default runtime to edge, or select the runtime for an individual function.

Maximum speed, minimum cost

Edge Functions use the lightweight Edge Runtime, which is built on the V8 engine used by the Chrome browser and doesn’t run within a MicroVM, making Edge Functions generally faster and more cost-effective than traditional serverless.

Vercel's own open-source OG Image Generation project now leverages Edge Functions for global, fast compute. By moving to the Edge, these APIs return almost 40% faster than a hot Serverless Function at a fraction of the cost.

This efficiency means that generating a million images with OG Image Generation running in Edge Functions costs nearly 15x less than the cost of generating those same million images in Serverless Functions.

What's changed: Even more flexibility

Regional Edge Functions

Vercel now gives you the option to express a region preference for Edge Functions, close to your data source.

Edge Functions are deployed globally by default, so compute happens in the region closest to the user making the request. For tasks that don't require a database, like our OG Image Generation tool, this reduces latency between function and user, reinforcing the benefit of fast, global compute.

However, for functions that need to query a database, global compute could mean the request takes longer because the request could come in from a region far from the database. That additional latency may mean that the benefits of Edge Functions get outweighed by the length of that request.

With Regional Edge Functions, you can bind a function to a specific region, close to your database. This ensures that the benefit of fast compute isn't negated by additional latency.

With millions of files in Sanity, Keystone Education Group, in partnership with NoA Ignite relies on fast, efficient data fetching from the headless CMS to power Keystone's site. Running those API Routes efficiently is a priority for their development team, so compute co-location is crucial. At this scale, the team can save money and deliver an improved experience for their Sanity-based content by leveraging the leaner runtime.

"We shifted Keystone's API Routes incrementally from Serverless to Edge Functions and couldn't be happier. It was very straightforward for us to make the change on Vercel, and as a result, we've been able to reduce costs and we've seen our compute efficiency drastically improve."

Tormod UlsbergPrincipal Architect, NoA Ignite

Support for WebAssembly

Because Vercel’s Edge Functions run in a lightweight execution environment built on the V8 JavaScript Engine, we were able to add support for WebAssembly, or Wasm, a language similar to Assembly language that’s commonly supported as a low-level language by browsers.

WebAssembly lets you take a function written in a different language—like C or Rust—and use that directly in Edge Functions. This lets you move many existing libraries to Edge Functions just by recompiling for Wasm. Complex, computationally heavy workloads often run twice as fast in WebAssembly as they do when written in JavaScript.

Moving Vercel’s OG Image Generation to Wasm and Edge Functions, Image Generation became 5x faster in P99 TTFB.

Increased workload size and improved infrastructure

Pro and Enterprise customers can now use larger Edge Functions. We’ve increased the size limit for Edge Functions to 2 MB for Pro customers and 4 MB for Enterprise customers. That’s 2x and 4x bigger than before, respectively.

We’ve also significantly improved our routing for Edge Functions, massively reducing the time it takes to start executing a function.

The future of Edge Functions

We’re excited to continue improving our compute products—both Edge and Serverless Functions.

First, we’re improving the compatibility between Edge Functions and Serverless Functions. Our goal is for the Edge Runtime to be a proper subset of the Node.js API. We want users to be able to choose their execution environment based on performance and cost characteristics, not the API.

We’re also improving the observability and error reporting for functions, starting with Vercel Logs and Monitoring. We want to make it easier for you to understand how your functions are executing and how and when they encounter errors. We want to make understanding how your functions work on Vercel clearer and troubleshooting problems simpler.

We're working towards a goal of seamless interoperability with a great developer experience, both locally and in production, across all our compute products.

Pricing and Limits

Edge Functions are billed in units of 50 ms of CPU time per invocation, called execution units. CPU time is the time spent performing computations, not including the time spent waiting for data fetches. This means that if you query a database or fetch an API—even from a slower backend like an AI inference service—you're not paying for the time spent waiting for the data fetch.

Hobby users have 500,000 monthly Edge Function execution units included for free. Pro and Enterprise teams have 1 million monthly Edge Function execution units included for free and can add on additional usage.

You can see the number of executions, execution units, and the CPU time usage of your Edge Functions in your account dashboard.

Next steps

To get started with Vercel, deploy an Edge Function or check out our documentation to get started.