1.0.1 • Published 12 months ago

@icapps/nestjs-prisma v1.0.1

Weekly downloads
-
License
ISC
Repository
github
Last release
12 months ago

@icapps/nestjs-prisma

Everything you need to get started with Prisma in NestJS

Installation

Quick installation

npx @icapps/nestjs-prisma

Manual installation

1. Install @icapps/nestjs-prisma and Prisma Client

npm install @icapps/nestjs-prisma @prisma/client

2. Install Prisma CLI

npm install prisma --save-dev

3. Initialize Prisma

npx prisma init

Usage

1. Import PrismaModule into your root module

// app.module.ts

import { Module } from '@nestjs/common';
import { PrismaModule } from '@icapps/nestjs-prisma';

@Module({
  imports: [PrismaModule],
})
export class AppModule {}

2. Enable shutdown hooks

// main.ts

import { PrismaService } from '@icapps/nestjs-prisma';
import { NestFactory } from '@nestjs/core';
import { AppModule } from './app.module';

async function bootstrap() {
  const app = await NestFactory.create(AppModule);

  const prismaService = await app.get(PrismaService);
  await prismaService.enableShutdownHooks(app);

  await app.listen(3000);
}
bootstrap();

3. Import PrismaService to get started

// todo.service.ts

import { PrismaService } from '@icapps/nestjs-prisma';
import { Injectable } from '@nestjs/common';

@Injectable()
export class TodoService {
  constructor(private prisma: PrismaService) {}

  findAll() {
    return this.prisma.todo.findMany();
  }
}
1.0.1

12 months ago

1.0.0

12 months ago

0.0.4

1 year ago

0.0.3

1 year ago

0.0.2

1 year ago

0.0.1

1 year ago