Skip to content

Instantly share code, notes, and snippets.

View gdpp's full-sized avatar
👽
Learning new Techs

Gustavo Perez gdpp

👽
Learning new Techs
View GitHub Profile
@gdpp
gdpp / prisma.ts
Created May 16, 2025 12:35
Prisma snippet foundation
import { PrismaClient } from './generated/prisma'
const prisma = new PrismaClient();
async function main(){
// Prisma queries
// Create user example
const user = await prisma.user.create({
data:{