I stumbled across Supabase.io a while ago but got interested again when I saw they just got 6M in funding so I figured I would take it for a spin and also do some live coding.
The website says
The Open SourceFirebase Alternative
Create a backend in less than 2 minutes. Start your project with a Postgres Database, Authentication, instant APIs, and realtime subscriptions.
The video is here along with the source code. To get the project to work you will need your own credentials and then modify the config.js
file
import { createClient } from "@supabase/supabase-js";
const SUPABASE_KEY = "FILL_IN_FROM_YOUR_SUPABASE_PROJECT";
const SUPABASE_URL = "FILL_IN_FROM_YOUR_SUPABASE_PROJECT";
export const SUPABASE_CLIENT = createClient(SUPABASE_URL, SUPABASE_KEY);
Video: https://www.youtube.com/watch?v=vkEJWFQwAOM
1 post - 1 participant