@canopie-club/prisma-client
v1.0.0-beta.12
Published
This package provides a Prisma client for the Canopie Club project, offering an easy-to-use interface for database operations.
Downloads
24
Readme
@canopie-club/prisma-client
This package provides a Prisma client for the Canopie Club project, offering an easy-to-use interface for database operations.
Installation
To install the package, run:
npm install @canopie-club/prisma-client
Usage
To use the Prisma client in your project:
import { PrismaClient } from '@canopie-club/prisma-client';
const db = new PrismaClient()
// Now you can use the prisma client to interact with your database
const users = await prisma.user.findMany();