Live data from Hacker News

From Supabase to Clerk to Better Auth

blog.val.town

11–20 of 259 posts

Re: From Supabase to Clerk to Better Auth

#12
post #5

Earlier 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.

What framework offers all those auth features OOTB?

Re: From Supabase to Clerk to Better Auth

#17

Earlier 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?

Laravel

https://laravel.com/docs/13.x/authentication

https://laravel.com/docs/13.x/socialite

https://laravel.com/docs/13.x/sanctum

Re: From Supabase to Clerk to Better Auth

#18
If 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 script for that. Phoenix auth stuff that comes out of the box is great.

Re: From Supabase to Clerk to Better Auth

#19
Hey, Bereket from Better Auth here. I started Better Auth to solve this exact issue for myself, and it later turned into a company. It always give me joy to just see others getting the same value from it :) There is a lot to work on, would love to know what we can improve

Re: From Supabase to Clerk to Better Auth

#20

If 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…

Oh, and http://github.com/agoodway/walex if you need the realtime database change stuff.
Post reply on HN