> Supabase Edge Functions
Deploy serverless functions at the edge with Supabase and Deno.
fetch
$
curl "https://skillshub.wtf/skillshub-team/catalog-batch5/supabase-edge-functions?format=md"SKILL.md•Supabase Edge Functions
Supabase Edge Functions
Create & Deploy
supabase functions new my-function
supabase functions deploy my-function
Function
// supabase/functions/my-function/index.ts
import { serve } from "https://deno.land/std/http/server.ts";
import { createClient } from "https://esm.sh/@supabase/supabase-js";
serve(async (req) => {
const supabase = createClient(Deno.env.get('SUPABASE_URL')!, Deno.env.get('SUPABASE_SERVICE_ROLE_KEY')!);
const { data } = await supabase.from('users').select('*');
return new Response(JSON.stringify(data), { headers: { 'Content-Type': 'application/json' } });
});
Invoke: supabase.functions.invoke('my-function', { body: { name: 'test' } })
Secrets: supabase secrets set MY_KEY=value
> related_skills --same-repo
> Nix Dev Shells with direnv
Auto-activate reproducible dev environments with Nix flakes and direnv.
> Dagger with GitHub Actions
Run Dagger CI/CD pipelines in GitHub Actions for portable, testable builds.
> Bun + Hono API
Build fast APIs with Bun runtime and Hono framework.
> Deno Fresh Framework
Build full-stack web apps with Fresh on Deno. Islands, routes, and zero runtime overhead.
┌ stats
installs/wk0
░░░░░░░░░░first seenMar 18, 2026
└────────────