From Supabase to Clerk to Better Auth
11–20 of 259 posts
Re: From Supabase to Clerk to Better Auth
#12Earlier quoted context omitted.
Lol wut? you get all of your auth data in your own db in 1 cli command. You are not tied to any on db provider. On top of that you get hundreds of auth features like oauth providers (I use it to allow users to log in via google, apple, github) and the best part it's free. Not saying Supabase and Clerk are bad, but they cost money. With better auth you pay exactly $0 for all of this.
Or I could use a web framework that offers that out of the box, and its free and lives in my database, wherever I want.
Re: From Supabase to Clerk to Better Auth
#13Re: From Supabase to Clerk to Better Auth
#14Re: From Supabase to Clerk to Better Auth
#15Easy to use and high reliability. Some of these other providers are not the best at reliability.
Re: From Supabase to Clerk to Better Auth
#16Anyone remember Auth0 and passportjs?
The churn of auth services is never ending, but I suppose so are the standards.
Re: From Supabase to Clerk to Better Auth
#17Earlier quoted context omitted.
Or I could use a web framework that offers that out of the box, and its free and lives in my database, wherever I want.
What framework offers all those auth features OOTB?
Re: From Supabase to Clerk to Better Auth
#18- https://github.com/agoodway/introspex (generate Ecto Schemas from postgres tables)
- https://github.com/agoodway/pgrest (Supabase/PostgREST compatible query engine)
I also found this helpful in the migration: https://github.com/supabase-community/supabase-ex
Nothing for auth, I basically did a one-off script for that. Phoenix auth stuff that comes out of the box is great.
Re: From Supabase to Clerk to Better Auth
#19Re: From Supabase to Clerk to Better Auth
#20If you're in Elixir-land, I've put together a few packages to help migrating from Supabase (or other stacks): - https://github.com/agoodway/introspex (generate Ecto Schemas from postgres tables) - https://github.com/agoodway/pgrest (Supabase/PostgREST compatible query engine) I also found this helpful in the migration: https://github.com/supabase-community/supabase-ex Nothing for auth, I basically did a one-off scrip…