Every published module, all in one place.
3 modules
Database → Orm
Use an ORM (Prisma or equivalent) without its convenience becoming a performance or security liability: N+1 detection and eager loading, transactions for multi-write invariants, parameterized queries only, selecting only needed columns, ORM-managed migrations, and when to drop to raw SQL.
by @markdowners
Database → Postgres
PostgreSQL-specific conventions on top of database-design-basics: naming, precise types (citext/jsonb/timestamptz), and RLS basics.
Database → Schema Design
Schema fundamentals that prevent the expensive-to-fix mistakes: keys, constraints, normalization, correct types, and indexing discipline.