Skip to content

adapolytech/nestjs-prisma-mongodb-starter-kit

Repository files navigation

NestJS vs Prisma Starter Kit

Tech stack

  • NestJS
  • Prisma
  • GraphQL
  • MongoDB

Next step

  • add email validation with Resend
  • passport for authenticiation

Description

Nest framework TypeScript starter repository.

mutation account {
  accounts {
    register(
      input: {
        firstname: "Nuulest"
        lastname: "dev"
        email: "test.dev@gmail.com"
        password: "secret"
      }
    ) {
      ... on EmailExistError {
        __typename
        code
        message
      }
      ... on User {
        __typename
        firstname
        lastname
        id
        accountId
      }
    }
  }
}

Installation

yarn

Running the app

# development
$ yarn start

# watch mode
$ yarn start:dev

# production mode
$ yarn start:prod

Test

# unit tests
$ yarn test

# e2e tests
$ yarn test:e2e

# test coverage
$ yarn test:cov

Support

Nest is an MIT-licensed open source project. It can grow thanks to the sponsors and support by the amazing backers. If you'd like to join them, please read more here.

Stay in touch

License

Nest is MIT licensed.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published