Can't use Cloudflare D1 database with Hono backend on Cloudflare Workers
Due to the fact that the
env context
is only exposed to incoming requests, It can't seem to be possible to create a config for better-auth on Hono using the D1 Database from Cloudflare Workers.
This example of D1 with better-auth is for the OpenNext new implementation for Workers, I'm wondering if there's a way to set it up also on Hono.
I've been able to make it work from SolidStart with a similar configuration but I'm stuck on Hono, and I'd prefer to have the server backend of better-auth on a separate Hono Worker without relying on CF Functions from the full-stack app.
13 Replies
Unknown User•6mo ago
Message Not Public
Sign In & Join Server To View
Thanks for the tip, didn't see that method before, but it's still not reliable.
After attaching the
app.use(contextStorage())
in the main app index.ts
file I still can't make it work
With this in place and the dev server running, trying to run npx @better-auth/cli generate
or npx @better-auth/cli migrate
will still result in ERROR [#better-auth]: Couldn't read your auth config. Context is not available
These commands are working from a SolidStart App that is bounded through Service Binding to the same worker in a much complex way, it's frustrating not being able to bind it directly in Hono because of the way the context is treated 😅I was running into the same issue, but I believe I have a working solution to your problem. I am using KV, instead of D1, but it should work for you too.


Hopefully I am not too late in showing you this example.
Interesting, you're always welcome, never too late 😄
It's very late for me so I can't test it right away, I'll let you know tomorrow or in a couple of hours.
I was just wondering, the
auth
object is going to be recognized by the cli tool for migrate
and generate
commands?
Since it's not explicitly exported I can't say it for sure right now.Im not sure about the cli tool for migrate and generate since I was never able to get them working because I am using Drizzle. I just manually implemented the schemas from the documentation. As far as migrating, I use drizzle to handle the migration since according to the docs, better-auth migrate only works with kysely adapter anyway. I am able to use the auth client in my React app with no issues with this current setup.
Let me know if you have any other questions or issues and I will see if I can help!
Much appreciated!
I'll let you know if worked for me as well, have a great day!
No problem. You have a great day as well!
Sooo, I tried this middleware and works as expected for routes, the only problem is that I still cannot make the CLI pick up the auth since it's not exported according to the docs request, I don't use an ORM so this feature is essential
Im glad you were able to get the routes working. As far as the CLI, im not sure how to get those working with this setup. Might be worth asking in the general chat for help since its essential for your workflow.
The issue with the CLI is that it tries to run your config and connect to the database for migrations, but it needs the Hono context to do that in this case. One way potentially to solve it could be adding a flag to load
auth.ts
file just for the CLI. That way, you can reuse the config between the CLI and your app
This might be able to solve it but may not work at allThanks for tips but unfortunately this won't work with the CLI because there is no way to reference the D1 Database from outside the
context
, so the fallback to process.env.DB will return undefined when requesting the config from the CLI and commands will crash trying to .prepare(compiledQuery.sql)
of undefined
.
I also tried to reference the local file through better-sqlite3
as a fallback but other Cloudflare specific environment (about the path module polyfills I think) are crashing the execution due to module incompatibility.
I opened a GH issue to keep track of more about this topichey I think for this you could just use an endpoint that runs the migrations for you