GitHub
github.com › ArianaProjects › prisma-nestjs-crud-generator
GitHub - ArianaProjects/prisma-nestjs-crud-generator: A full CRUD generator for NestJs with Prisma Schema
We will not show how to install and configure NestJs, and we assume that you know NestJs and Prisma well ... After installation, you should add our configuration to your Prisma.schema File. generator Prisma_Code_Generator { provider = "Prisma_Code_Generator" output = "../gen" }
Starred by 12 users
Forked by 7 users
Languages TypeScript 99.9% | JavaScript 0.1% | TypeScript 99.9% | JavaScript 0.1%
Kepelrs
kepelrs.github.io › nestjs-prisma-crud › getting-started
Getting Started | nestjs-prisma-crud
*/ PrismaCrudModule.register({ prismaService: PrismaService, }), ], // ...})export class AppModule {}Copy · Generate the entire crud module with the following command (replace post with your table's name from your Prisma schema): nest g -c nestjs-prisma-crud-schematics crud-resource postCopy ·
08:56
NestJS Tutorial #17 Building a CRUD REST API using Nestjs + Prisma ...
Nest.js REST API with Prisma ORM, Neon Postgres - YouTube
12:58
Building a CRUD REST API with Nest js and Prisma - YouTube
19:53
[EN] - CRUD application: NestJS + Prisma + PostgreSQL - YouTube
GitHub
github.com › kepelrs › nestjs-prisma-crud
GitHub - kepelrs/nestjs-prisma-crud: CRUD package for NestJS and Prisma ORM · GitHub
npm i nestjs-prisma-crud npm i nestjs-prisma-crud-schematics --save-dev · Generate the entire crud module with a single command (replace post with your model's name):
Starred by 166 users
Forked by 17 users
Languages TypeScript 99.6% | JavaScript 0.4%
Kepelrs
kepelrs.github.io › nestjs-prisma-crud
Intro | nestjs-prisma-crud
crud-resource: a modified NestJS resource schematic that scaffolds the entire CRUD module for you. One-line scaffolding with: nest g -c nestjs-prisma-crud-schematics crud-resource <YOUR-TABLE-NAME-HERE>
GitHub
github.com › mk668a › nestjs-prisma-graphql-crud-gen
GitHub - mk668a/nestjs-prisma-graphql-crud-gen: Generate CRUD resolvers from GraphQL schema with NestJS and Prisma
Generate CRUD resolvers from GraphQL schema with NestJS and Prisma - mk668a/nestjs-prisma-graphql-crud-gen
Starred by 46 users
Forked by 10 users
Languages TypeScript 99.6% | JavaScript 0.4% | TypeScript 99.6% | JavaScript 0.4%
GitHub
github.com › johannesschobel › nest-prisma-crud
GitHub - johannesschobel/nest-prisma-crud: Example on how to create a CRUD Service for Prisma · GitHub
curl https://codeload.github.com/prisma/prisma-examples/tar.gz/latest | tar -xz --strip=2 prisma-examples-latest/typescript/rest-nestjs ... Note that this also generates Prisma Client JS into node_modules/@prisma/client via a postinstall hook ...
Starred by 25 users
Forked by 2 users
Languages TypeScript 96.2% | JavaScript 3.8%
Kepelrs
kepelrs.github.io › nestjs-prisma-crud › crud-endpoints
CRUD Endpoints | nestjs-prisma-crud - GitHub Pages
nest g -c nestjs-prisma-crud-schematics crud-resource postCopy · The above will scaffold the entire CRUD module for you, most notably: post.controller.ts where you can add, remove or extend your controllers' functionality. post.service.ts where you can configure your crud endpoints. The CRUD controller is just a regular NestJS controller with a few characteristics: All routes use the generated <ModelName>Service for performing the CRUD operations.
GitHub
github.com › ChrisBland › nestjs-prisma-graphql-crud-gen
GitHub - ChrisBland/nestjs-prisma-graphql-crud-gen: Generate CRUD resolvers from GraphQL schema with NestJS and Prisma
Generate CRUD resolvers from GraphQL schema with NestJS and Prisma - ChrisBland/nestjs-prisma-graphql-crud-gen
Author ChrisBland
npm
npmjs.com › package › nestjs-crud-prisma
nestjs-crud-prisma - npm
June 27, 2021 - npm install --save nestjs-crud-prisma · NodeJS · Setup prisma to support generating typegraphql. This step is not required but recommended. Typegraphql will generate the models from the schema.prisma. schema.prisma · generator typegraphql { provider = "../node_modules/typegraphql-prisma/generator.js" output = "../src/generated/type-graphql" } Create a service that injects the prisma service.
» npm install nestjs-crud-prisma
Published Jun 27, 2021
Version 0.0.19
Author Jam Risser
GitHub
github.com › clayrisser › nestjs-crud-prisma
GitHub - clayrisser/nestjs-crud-prisma: crud for restful apis built with nestjs and prisma
May 29, 2024 - Also, notice I'm getting the model from the generated typegraphql. ... import { Injectable } from '@nestjs/common'; import { PrismaCrudService } from 'nestjs-crud-prisma'; import { PrismaService } from 'nestjs-prisma'; import { User } from '../../generated/type-graphql'; @Injectable() export class UserService extends PrismaCrudService<User> { constructor(prisma: PrismaService) { super(prisma, User); // make sure you pass in the model } }
Starred by 57 users
Forked by 12 users
Languages TypeScript 66.3% | Makefile 31.4% | Dockerfile 1.4% | Shell 0.9% | TypeScript 66.3% | Makefile 31.4% | Dockerfile 1.4% | Shell 0.9%
GitHub
gist.github.com › EdouardDem › 5aa7ed56117aed79f43914583474d4ae
nestjs-prisma-example-tutorial · GitHub
We will be using three libraries - @trxn/prisma-nestjs-services-generator , @trxn/prisma-nestjs-graphql-resolvers-generator, and prisma-nestjs-graphql - to generate NestJS services, GraphQL resolvers, DTOs, and schemas based on a Prisma schema.By the end of this tutorial, you will be able to generate a complete NestJS application with CRUD operations and a GraphQL API from a Prisma schema with just a few commands.
Delvingdeveloper
delvingdeveloper.com › posts › nestjs-postgres-prisma-crud-api
Build a CRUD API with NestJS, Postgres & Prisma
July 16, 2025 - Step 6: Generate Prisma Client Automatically generate the Prisma Client tailored to your database schema: ... This generates lightweight, type-safe query methods you can use in your application. Step 7: Implement CRUD Operations In the NestJS application, create modules, services, and controllers to handle API routes. For example, a simple endpoint in users.controller.ts could be:
Prisma
prisma.io › blog › nestjs-prisma-rest-api-7D056s1BmOL0
Build a REST API with NestJS, Prisma 7, PostgreSQL and Swagger
June 3, 2022 - In it, you will generate a NestJS project, connect it to PostgreSQL with Prisma ORM 7, build CRUD endpoints for a blog application called "Median", and document the API with Swagger.
npm
npmjs.com › package › @vutadev › nestjs-crud-prisma
@vutadev/nestjs-crud-prisma - npm
February 1, 2024 - npm install --save nestjs-crud-prisma · NodeJS · Setup prisma to support generating typegraphql. This step is not required but recommended. Typegraphql will generate the models from the schema.prisma. schema.prisma · generator typegraphql { provider = "../node_modules/typegraphql-prisma/generator.js" output = "../src/generated/type-graphql" } Create a service that injects the prisma service.
» npm install @vutadev/nestjs-crud-prisma
Published Feb 01, 2024
Version 0.0.21
Author Jam Risser
npm
npm.io › home › nestjs-crud-prisma
nestjs-crud-prisma | npm.io
June 27, 2021 - npm install --save nestjs-crud-prisma · NodeJS · Setup prisma to support generating typegraphql. This step is not required but recommended. Typegraphql will generate the models from the schema.prisma. schema.prisma · generator typegraphql { provider = "../node_modules/typegraphql-prisma/generator.js" output = "../src/generated/type-graphql" } Create a service that injects the prisma service.
Published Sep 15, 2020
Version 0.0.19
Author Jam Risser