A starter project showing how you can integrate Drizzle ORM and Cloudflare D1 with a HonoX application to build awesome full-stack apps.
Tip
If the above paragraph was a bunch of buzzwords that seem confusing, here's the simple version:
- HonoX is a full-stack framework combining backend API endpoints with the ability to render frontend applications with React
- Cloudflare D1 is a SQL database
- Drizzle ORM provides an ORM wrapper around D1, to allow data models and querying using a straightforward syntax
git clone git@github.com:yusukebe/cloudflare-d1-drizzle-honox-starter.git starter
cd starter
npm installnpx wrangler@latest d1 create d1-todoNote that if you haven't yet used Wrangler, you will be prompted to login to Cloudflare.
Copy the output of this command, which is structured TOML configuration, into your wrangler.toml.
npm run migration:generatenpm run migration:apply:localnpm run deploy5. Once you've deployed your application, you can apply the migrations to your remote (production) D1 database
npm run migration:apply:remoteYou can see the starter using Prisma instead of Drizzle ORM:
Yusuke Wada https://github.com/yusukebe
MIT