Is drizzle fully framework agnostic?

I saw a lot of people use drizzle in NextJS, but i didn't find a lot of information about usage in frameworks like Nuxt 3 or Sveltekit. Are there things that need to be done diffrently depending on the framework?
3 Replies
volks
volks14mo ago
Drizzle adds typesafety around already existing DB clients, Driver
node-postgres
postgres.js
NeonDB Serverless
AWS Data API Vercel Postgres
So whenever you can use these clients you can use Drizzle. And why NextJS is so popular is because their users like bleeding edge and typesafety (also influence from Theo). Library translates the Drizzle DSL into raw sql to be executed by the driver
bloberenober
bloberenober14mo ago
Yes, Drizzle is totally framework and stack agnostic, you can use it anywhere
Thimo_o
Thimo_o14mo ago
Thank you both for the explanation!