Edge Functions: Deploy from the Dashboard + Deno 2.1

01 Apr 2025

4 minute read

Now you can create, test, edit, and deploy Edge Functions directly from the Supabase Dashboard. We're also releasing Deno 2.1 Preview today but more on that later.

Creating Edge Functions from the Supabase Dashboard

To write an Edge Functions previously, you had to install the Supabase CLI, spin up Docker, and then set up your editor to use Deno. Those steps are no longer necessary. The Edge Functions editor in the Dashboard has built-in syntax highlighting and type-checking for Deno and Supabase-specific APIs.

The Edge Functions editor includes templates for common use cases, such as Stripe WebHooks, OpenAI proxying, uploading files to Supabase Storage, and sending emails.

Once a Function has been deployed you can make edits directly within the Dashboard, and if you get stuck you can summon an inline AI Assistant to explain, debug or write code.

Downloading Edge Functions

You can download Edge Functions source code via Supabase CLI using supabase functions download FUNCTION_NAME or by clicking the Download button in the dashboard.

Testing Edge Functions from the Supabase Dashboard

We are introducing a built-in tool for testing your Edge Functions from the Supabase Dashboard. You can execute your Edge Function with different request payloads, headers, and query parameters. The built-in tester returns the response status, headers, and body.

With the built-in editor and tester, you have a streamlined workflow for creating, testing, and refactoring your Edge Functions without leaving the Supabase Dashboard.

Deploying Edge Functions no longer requires Docker

By popular request, you can now deploy Edge Functions from the Supabase CLI with the --use-api flag, which will not use Docker. We will make this the default behavior in future releases (with a --use-docker flag as a fallback option.)


_10
supabase functions deploy MY_FUNCTION --use-api

New APIs for Deploying Edge Functions

The ability to deploy without Docker in both the Edge Functions editor and Supabase CLI are made possible by new APIs we introduced to deploy and update Edge Functions. These APIs are publicly available for you to build custom integrations and workflows.

You can check the Changelog announcement for more details and official references to these API endpoints.

Deno 2.1 Preview

Last, but not least, we have added Deno 2.1 support for Supabase Edge Runtime. With Deno 2.1, you can use built-in Deno commands to scaffold a new project, manage dependencies, run tests, and lints.

Check our guide on how to start using Deno 2.1 tooling for your Edge Functions.

Conclusion

These changes to Supabase Edge Functions make it easier and more accessible for all developers to build powerful functionality into their applications.

Share this article

Build in a weekend, scale to millions