jason
jasonā€¢7d ago

Have you had a chance to explore `better

Have you had a chance to explore better-auth yet? I'm using this adapter @better-auth-kit/convex and its instructions (https://www.better-auth-kit.com/docs/adapters/convex, https://github.com/ping-maxwell/better-auth-kit/tree/main/packages/adapters/convex) and these instructions too https://www.better-auth.com/docs/installation and then set up Github OAuth, as the simplest way to get started: https://www.better-auth.com/docs/basic-usage But running into various issues. Convex Auth was seamless and easy. But I've concluded that better-auth is what I want to bet on long term b/c it seems to be an emerging standard in the JS ecosystem imo, is fully featured, not tied to any specific provider, etc. Blocked on integrating convex further now.
51 Replies
jason
jasonOPā€¢7d ago
1. First issue was getting it to build. I created an issue for @Ping 's repo for that: https://github.com/ping-maxwell/better-auth-kit/issues/5 Editing the built files in node_modules just to keep going with this, so they used .js extensions on imports, allowed the project to build without errors. 2. Now, getting a runtime error when trying to use better auth's authClient to sign in with Github OAuth, and it's like my Convex URL cannot be found anymore, but I've had Convex working on this project prior to better auth
Error importing route file: Error: Client created with undefined deployment address. If you used an environment variable, check that it's set.
at validateDeploymentUrl (file:///Users/me/proj/node_modules/convex/dist/esm/common/index.js:15:11
Error importing route file: Error: Client created with undefined deployment address. If you used an environment variable, check that it's set.
at validateDeploymentUrl (file:///Users/me/proj/node_modules/convex/dist/esm/common/index.js:15:11
erquhart
erquhartā€¢7d ago
Thanks for this - I'm looking into another integration approach now
jason
jasonOPā€¢6d ago
šŸ™ awesome Update: I got past the first build error: 1. Ping pushed an update to address it, so use this version or newer "@better-auth-kit/convex": "^1.1.4", 2. And I also needed to update my convex/tsconfig.json from "moduleResolution": "Bundler", to "moduleResolution": "bundler",. I don't recall setting this, so a default might need to be updated in Convex's code generation b/c TypeScript indicates that only lowercase is valid. Progress! Now the runtime error listed as #2 in my previous post still occurs trying to use the Github OAuth method to sign in. So, that's the next hurdle. Just noticed I have no better auth tables in Convex either. I might be messing this up, but I assume the tables are created after running npx convex dev --once as long as convex/betterAuth.ts exists.
Ping
Pingā€¢6d ago
Yes that's right.
gegi
gegiā€¢6d ago
Looking forward for this :convexspin: šŸ™ŒšŸ™Œ
Pierre
Pierreā€¢5d ago
Hi, Did you use the JWT plugin of better-auth ? Did Convex recognize it ?
gegi
gegiā€¢4d ago
Sorry for pinging you, but any chance we get a native adapter any time soon? I really would like to use betterauth together with convex in my tanstack start project and looking forward to it
erquhart
erquhartā€¢4d ago
No problem - too early to say for sure, but will update here. For anyone following this, would it be useful to have pretty standard auth working with Convex and BetterAuth or are you hoping to use specific plugins?
Ping
Pingā€¢4d ago
Just a heads up, has been some discussion with @ballingt and @Wayne about integrating Better Auth with Convex. Not sure if you knew that already, but just wanted to throw that out there.
erquhart
erquhartā€¢4d ago
Was literally just about to @ you lol yeah I'm aware, been thinking about whether our work would end up converging or something, but we should talk When I saw you wrote a tokenizer for this my head exploded lol, mad respect
Ping
Pingā€¢4d ago
haha, thanks Yeah, it would be really great if we can have some sort of native integration. Might be worth if I get Bekacru in here and we can chat about this
erquhart
erquhartā€¢4d ago
Convex just doesn't handle arbitrary queries, so it's going to be a different integration than the others. The approach I'm looking at is basically a BetterAuth Convex Component that wraps BetterAuth and provides specific functionality (and more support for specific plugins can be added ongoing).
Ping
Pingā€¢4d ago
specific functionality as in predefined functions for specific DB interactions?
erquhart
erquhartā€¢4d ago
Exactly. There can be a lot of sharing I think, but yeah a good number of functions and predefined tables/indexes.
Ping
Pingā€¢4d ago
Hmm. That might be challenging. Better Auth Adapter model allows our internal code & any plugins to call the adapter to do mutations or queries any way they like, could be a little unpredictable depending on the situation..
No description
erquhart
erquhartā€¢4d ago
I'm wondering if that varies depending on the functionality supported. Like BetterAuth does a lot - but if the initial support model is just auth, and we pin the Convex component to a specific version, that narrows how many queries can occur
Ping
Pingā€¢4d ago
Yeah I think this is our most recent conclusion from @ballingt , but there might be more to discuss
No description
erquhart
erquhartā€¢4d ago
I have basic sign / sign out with oidc (required for Convex custom auth integration) working right now
Ping
Pingā€¢4d ago
cc @bekacru I see
erquhart
erquhartā€¢4d ago
I fully agree w/ Tom's conclusion and your approach - if dynamic queries can be made to work in Convex, that's ideal. I just don't know if it's fully doable, just based on the caveats in the integration docs alone. Convex is really built for schema, indexes, and queries to be predefined in code, and everything is optimized for that. That said, having built the integration so far you may have a different outlook on the challenges? For feasibility on predefined queries, having a BetterAuth Convex component that exposes certain configs to the user and pins a specific BetterAuth version is definitely required. Not ideal, but the integration can feel very Convex native. And the adapters in the better auth source do provide a nice set of indicators for what queries to expect for a given provider or plugin.
Ping
Pingā€¢4d ago
The ideal goal is to have everything done in 1 request, and make it support transactions. Since right now, every req goes through a Convex action, then to the mutation/query call, this alone could be 1, 2 or maybe even 3 requests, and all of it is not transactionable as far as I'm aware I think that if we want Better Auth to work with Convex "seamlessly", it may have to use external/special code specific for Better Auth to work, using the current Convex DB functionality will probably only get us as far as what I've done. šŸ¤” Like a special Better-auth integrated Convex action sort of thing
erquhart
erquhartā€¢4d ago
Like platform level support you mean And yeah having everything be a transaction would be awesome Is your integration running better auth in an action or a mutation?
Ping
Pingā€¢4d ago
Yeah šŸ˜… As far as I'm aware, Convex DB uses sqlite? So it would mean that we'd need a custom adapter that can do direct queries to the DB internally? Not too sure..
erquhart
erquhartā€¢4d ago
My platform knowledge is zilch, but I'd be surprised if that were possible without breaking the whole model given Convex databases are entirely transaction based But again zilch is the important word there lol
Ping
Pingā€¢4d ago
Kind of both. Since the mutations & queries are using internalMutation/internalQuery, so everything runs through a Convex action, parsed and whatever else, then goes to their respective internalMutation/internalQuery
erquhart
erquhartā€¢4d ago
Gotcha, and better auth itself is being run in the http action and calling queries/mutations from there
Ping
Pingā€¢4d ago
better auth would have to run in any of the current supported integrations, it doesn't work in http actions
erquhart
erquhartā€¢4d ago
If it were possible to pass an object representing the request instead of the actual request, it might be possible to run better auth in a mutation, although fetch is only supported in actions
Ping
Pingā€¢4d ago
So for example, BA would run in Nextjs, and Convex is just there for DB or whatever else the user is using it for.
erquhart
erquhartā€¢4d ago
Ahh hmm I'm actually running it in an http action But I'm testing with Vite, not a framework like Next.
Ping
Pingā€¢4d ago
Right now? You got it working?
erquhart
erquhartā€¢4d ago
Yeah it works in http actions fine The OIDC plugin is šŸ”„
Ping
Pingā€¢4d ago
I haven't actually tested it, but I kind of made assumptions that things would break unexpectedly, as that's my experience in some other things in the Convex enviroment
erquhart
erquhartā€¢4d ago
The one thing that didn't work was jwks creation, as the convex runtime subtle crypto implementation doesn't have generateKeyPairs, so I just made a jwks record and stuck it in the jwks table Otherwise it was good
Ping
Pingā€¢4d ago
Just what I was about to say..... šŸ’€ the one thing I tested in HTTP action was using jose to parse JWT and it didn't work. Okay.. so everything else works then...
erquhart
erquhartā€¢4d ago
Parsing it can actually do fine oohh the alg, had to use rs256 ed25519 support has a bug in convex runtime, you may have run into that
Ping
Pingā€¢4d ago
I really wished I had asked you guys about this now, I just made the assumption that "things just don't work" šŸ¤¦ā€ā™‚ļø
erquhart
erquhartā€¢4d ago
to be fair, there wasn't a clear answer on the stuff you ran into, I spent half of yesterday figuring these parts out
Ping
Pingā€¢4d ago
Yeah... literally exactly that.. How unlucky xD Oh I see the more you learn I guess Anyway, back to HTTP action working with BA, that's really šŸ”„
erquhart
erquhartā€¢4d ago
I have some good progress on the Convex first approach, going to share something that works soon
Ping
Pingā€¢4d ago
Super awesome to hear. I might have to add this to my docs
erquhart
erquhartā€¢4d ago
Also making it a Convex Component will be a nice touch, separates auth tables from the user's app tables, and keeps the integration surface clear
Ping
Pingā€¢4d ago
What is a Convex Component?
erquhart
erquhartā€¢4d ago
Convex
Components
Independent, modular, TypeScript building blocks for your backend.
erquhart
erquhartā€¢4d ago
Convex's integrations layer Basically the components architecture means a Convex app is actually a component (the "root" component), and you can install other sort of sub-apps with their own sets of tables, functions, etc, and they expose functionality to your app (or other components) through a client api that the component itself defines.
Ping
Pingā€¢4d ago
okay... interesting. Could you give me an example of how I can merge this with the Better auth adapter idea?
erquhart
erquhartā€¢4d ago
It doesn't change anything on the dynamic query support front, the challenges you've outlined would still be there The approach I'm thinking of is a BetterAuth Convex Component would support a config similar to better auth, but limited to the things the component actually supports. But it'll feel super native and can be even simpler to set up than a standard db integration with BA Have to say, BetterAuth is a very nice piece of software. API's are so well thought out, and it has so many things that just work
v
vā€¢4d ago
how dumb is it to just use better auth jwt and a pg db or something like that i got it to work but i dont like having two dbs.
erquhart
erquhartā€¢4d ago
Not dumb, just preference.
Pierre
Pierreā€¢2d ago
Thank you @erquhart for working at this ! It would be awesome to have a Convex Component for that !
jason
jasonOPā€¢2d ago
Update on my end: I have Better Auth's Email OTP plugin working, to create a user, create a session, and delete a session on logout. (Better Auth's OAuth still encounters runtime errors, so I'll just hide that option on my login page for now.) Remaining to sort out: 1.) protecting private routes--i.e. to redirect to /login if unauthenticated, 2.) writing a helper to require authentication for certain Convex mutations & queries, 3.) making user object available to all routes. Do y'all have more clarity now on if a deeper integration between Convex & Better Auth is required? Asking b/c if so, that'd help me know to just pause my attempts for now.

Did you find this page helpful?