1.0.2 • Published 4 months ago

prisma-adapter-postgres v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
4 months ago

prisma-adapter-postgres

Prisma driver adapter for postgres.

Install

You will need to install the prisma-adapter-postgres driver adapter and the postgres client.

npm install prisma-adapter-postgres postgres
pnpm add prisma-adapter-postgres postgres
bun add prisma-adapter-postgres postgres

Setup

import postgres from "postgres";
import { PrismaPostgres } from "prisma-adapter-postgres";
import { PrismaClient } from "@prisma/client";

// init postgres client
const sql = postgres(process.env.DATABASE_URL!);

// init prisma with the adapter
const adapter = new PrismaPostgres(sql);
const prisma = new PrismaClient({ adapter });

const user = await prisma.user.create({
  data: {
    email: "test@prisma.io",
    name: "test"
  }
});

Credits

Based on other projects:

1.0.2

4 months ago

1.0.1

4 months ago

1.0.0

4 months ago