🌐
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 ·
🌐
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 › nestql › prisma-crud
GitHub - nestql/prisma-crud: GraphQL CRUD generator for nest.js apps. · GitHub
Prisma generator to emit @nestjs/graphql types and CRUD resolvers from your Prisma schema.
Author   nestql
🌐
GitHub
gist.github.com › johannesschobel › 365383f9d639d34f708c407389b93aa9
Prisma CRUD Service Generator for NestJS · GitHub
Respective library is a fully fledged crud generator, developed by me: Take a look at the documentation here https://github.com/prisma-utils/prisma-utils/tree/main/libs/prisma-crud-generator
Find elsewhere
🌐
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.
🌐
Prisma
prisma.io › home › generators › generators › generators › generators
Generators (Reference) | Prisma Documentation
prisma-custom-models-generator: Emit custom models from your Prisma schema, based on Prisma recommendations. nestjs-prisma-graphql-crud-gen: Generate CRUD resolvers from GraphQL schema with NestJS and Prisma.
🌐
NestJS
docs.nestjs.com › recipes › crud-generator
CRUD generator | NestJS - A progressive Node.js framework
Nest is a framework for building efficient, scalable Node.js server-side applications. It uses progressive JavaScript, is built with TypeScript and combines elements of OOP (Object Oriented Programming), FP (Functional Programming), and FRP (Functional Reactive Programming).
🌐
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