Integrating Functions with Your App
Learn how to invoke your deployed Edge Functions from your client-side application and process their responses.
Calling Your Edge Functions
You've learned to deploy Edge Functions. Now, let's connect them to your client application! This is where your app truly becomes dynamic.
Integrating functions allows your app to trigger server-side logic, process data, or interact with external services without managing a dedicated backend server.
How Clients Talk to Functions
Supabase Edge Functions are essentially HTTP endpoints. Your client application communicates with them by making standard HTTP requests.
The Supabase client library simplifies this process, providing a clean way to invoke your deployed functions directly from your JavaScript, TypeScript, or other supported client environments.
All lessons in this course
- Introduction to Edge Functions
- Deploying Your First Function
- Integrating Functions with Your App
- Secrets, Environment Variables, and Scheduled Functions