Setup Prisma Client for Node Application

 In this post we will setup Prisma client for Node Application like below

Fist go to backend/src/prisma/client.js and add below code on that ->

import { PrismaClient } from "@prisma/client";

const prisma = new PrismaClient();

export default prisma;


and save.



Comments

Popular posts from this blog

Basics Of PHP

Creating App.js for Node Application

WordPress Full Guide For Developer