Skip to main content

Supabase-Deno

A Deno API for Supabase, an alternative to FireBase

Usage

Import
import { supabaseClient } from "https://deno.land/x/supabase_deno/mod.ts";
Create Client
const sbclient = new supabaseClient("https://xyz.supabase.co","your-anon-key")
Get items from a table
let table = sbclient.tables().get("todo")
console.log(await table.items.all())

ToDo

❎ RLS Client