Developing Functions locally
Setting Up Your Environment#
You can follow the Deno guide for setting up your development environment with your favorite editor/IDE.
When developing with VS Code inside of an existing application, you can utilize multi-root workspaces.
For example, see this edge-functions.code-workspace
configuration for a CRA (create react app) client with Supabase Edge Functions. You can find the complete example on GitHub.
_24{_24 "folders": [_24 {_24 "name": "project-root",_24 "path": "./"_24 },_24 {_24 "name": "client",_24 "path": "app"_24 },_24 {_24 "name": "supabase-functions",_24 "path": "supabase/functions"_24 }_24 ],_24 "settings": {_24 "files.exclude": {_24 "node_modules/": true,_24 "app/": true,_24 "supabase/functions/": true_24 },_24 "deno.importMap": "./supabase/functions/import_map.json"_24 }_24}
Running Edge Functions locally#
You can run your Edge Function locally using supabase functions serve
:
_10supabase start # start the supabase stack_10supabase functions serve # start the Functions watcher
The functions serve
command has hot-reloading capabilities. It will watch for any changes to your files and restart the Deno server.
Invoking Edge Functions locally#
While serving your local Edge Function, you can invoke it using curl:
_10curl --request POST 'http://localhost:54321/functions/v1/function-name' \_10 --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZS1kZW1vIiwicm9sZSI6ImFub24ifQ.625_WdcF3KHqz5amU0x2X5WWHP-OEs_4qj0ssLNHzTs' \_10 --header 'Content-Type: application/json' \_10 --data '{ "name":"Functions" }'
or using one of the client libraries, e.g. using supabase-js:
_11import { createClient } from '@supabase/supabase-js'_11_11// Use the credentials outputted in your terminal when running `supabase start`_11const supabase = createClient(_11 'http://localhost:54321',_11 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZS1kZW1vIiwicm9sZSI6ImFub24iLCJleHAiOjE5ODM4MTI5OTZ9.CRXP1A7WOeoJeXxjNni43kdQwgnWNReilDMblYTn_I0'_11)_11_11const { data, error } = await supabase.functions.invoke('function-name', {_11 body: { name: 'Functions' },_11})
You should see the response { "message":"Hello Functions!" }
.
If you execute the function with a different payload the response will change.
Modify the --data '{"name":"Functions"}'
line to --data '{"name":"World"}'
and try invoking the command again!
note
- Edge Functions don't serve HTML content (
GET
requests that returntext/html
are rewritten totext/plain
). - The
Authorization
header is required. You can use either theANON
key, theSERVICE_ROLE
key, or a logged-in user's JWT. - The Function is proxied through the local API (
http://localhost:54321
)