All Projects β†’ 7codeRO β†’ nest-prisma-rest-api-boilerplate

7codeRO / nest-prisma-rest-api-boilerplate

Licence: other
Nest + Prisma + TypeScript | REST API Starter repository

Programming Languages

typescript
32286 projects
javascript
184084 projects - #8 most used programming language
shell
77523 projects

Projects that are alternatives of or similar to nest-prisma-rest-api-boilerplate

nestjs-prisma-starter
Starter template for NestJS 😻 includes GraphQL with Prisma Client, Passport-JWT authentication, Swagger Api and Docker
Stars: ✭ 1,107 (+4512.5%)
Mutual labels:  nestjs, prisma, prisma2
nestjs-prisma-docker
Dockerizing a NestJS app with Prisma and PostgreSQL
Stars: ✭ 42 (+75%)
Mutual labels:  nestjs, prisma, prisma2
Amplication
Amplication is an open‑source development tool. It helps you develop quality Node.js applications without spending time on repetitive coding tasks.
Stars: ✭ 3,630 (+15025%)
Mutual labels:  nestjs, prisma
prisma-pg-jest
Example showcasing how to use Prisma + Postgres + Jest, where each test has its own unique DB context
Stars: ✭ 103 (+329.17%)
Mutual labels:  prisma, prisma2
prisma-json-schema-generator
A generator for Prisma 2 to generate a valid JSON Schema (v7)
Stars: ✭ 145 (+504.17%)
Mutual labels:  prisma, prisma2
api-old
The official API for the Spotistats app (Android + iOS) πŸ’š
Stars: ✭ 33 (+37.5%)
Mutual labels:  nestjs, prisma2
Nestjs Prisma Starter
Starter template for NestJS 😻 includes GraphQL with Prisma Client, Passport-JWT authentication, Swagger Api and Docker
Stars: ✭ 547 (+2179.17%)
Mutual labels:  nestjs, prisma
nest-typescript-starter
Nest framework TypeScript starter (node.js)
Stars: ✭ 35 (+45.83%)
Mutual labels:  nestjs, prisma2
nest-next-sample
NestJS + Next.js sample application / Backend and Frontend use only TypeScript!!!
Stars: ✭ 110 (+358.33%)
Mutual labels:  nestjs, prisma
stack
πŸ₯­ nxpm-stack lets you generate a complete and opinionated full-stack application in a Nx Workspace, ready to extend and deploy!
Stars: ✭ 98 (+308.33%)
Mutual labels:  nestjs, prisma
database-schema-examples
Database Schema Examples we strive to support in Prisma
Stars: ✭ 94 (+291.67%)
Mutual labels:  prisma, prisma2
gondor
Nestjs Framework, Prisma database layer w/ Angular and Apollo.
Stars: ✭ 14 (-41.67%)
Mutual labels:  nestjs, prisma
prisma-nestjs-graphql
Generate object types, inputs, args, etc. from prisma schema file for usage with @nestjs/graphql module
Stars: ✭ 276 (+1050%)
Mutual labels:  nestjs, prisma
Nestjs Realworld Example App
Exemplary real world backend API built with NestJS + TypeORM / Prisma
Stars: ✭ 1,838 (+7558.33%)
Mutual labels:  nestjs, prisma
goprisma
A Go wrapper for prisma to turn databases into GraphQL APIs using Go.
Stars: ✭ 54 (+125%)
Mutual labels:  prisma, prisma2
matnbaz
πŸ“š The source-code for matnbaz.net. A monorepo containing the back-end (NestJS/Prisma/Apollo), front-end (Next.js/Apollo) and some tooling.
Stars: ✭ 481 (+1904.17%)
Mutual labels:  nestjs, prisma
fullstack-ts-boilerplate
Full-stack boilerplate in TS using modern technology
Stars: ✭ 25 (+4.17%)
Mutual labels:  nestjs, prisma
blitz
⚑️The Fullstack React Framework β€” built on Next.js
Stars: ✭ 11,558 (+48058.33%)
Mutual labels:  prisma, prisma2
next-prisma
πŸš€ Static site with Next.js 9.4 and Prisma.
Stars: ✭ 116 (+383.33%)
Mutual labels:  prisma
dothq.co
This repository has moved to:
Stars: ✭ 17 (-29.17%)
Mutual labels:  nestjs

7Code Logo

Description

Nest + Prisma + TypeScript starter repository.

Production-ready REST API:

  • Error Handling (Exception Filters)
  • Logging System
  • DB Seeds/Migrations
  • Built-in AuthModule, using JWT. Route Guards
  • Model Events Listener (onCreated, …)
  • Deployable. CI/CD pipeline using Github Actions.
  • Advanced ESLint/TSLint config. (e.g: auto-fix will remove unused imports)
  • Shared services/constants/helpers
  • Middlewares/Interceptors implementation example.

TO-DO

Installation

$ npm install

Running the app

# development
$ npm run start

# watch mode
$ npm run start:dev

# production mode
$ npm run start:prod

Test

# unit tests
$ npm run test

# e2e tests
$ npm run test:e2e

# test coverage
$ npm run test:cov

Prisma (ORM)

# IDE for your database
$ npx prisma studio 

# run migrations (apply schema changes)
$ npx prisma migrate dev

# run migrations on CI/CD
$ npx prisma migrate deploy

# apply db schema changes to the prisma client
$ npx prisma generate

Code Style

Sync your IDE with project eslintrc.js.

Check Run ESLint --fix on save

Stay in touch

License

MIT licensed.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].