Supabase + Node.js Skill Express/Hono patterns with Supabase Auth and Drizzle ORM. Sources: Supabase JS Client | Drizzle ORM --- Core Principle Drizzle for queries, Supabase for auth/storage, middleware for validation. Use Drizzle ORM for type-safe database access. Use Supabase client for auth verification, storage, and realtime. Express or Hono for the API layer. --- Project Structure --- Setup Install Dependencies package.json Scripts Environment Variables --- Configuration src/lib/config.ts --- Database Setup drizzle.config.ts src/db/index.ts src/db/schema.ts --- Supabase Client src/lib/su…