https://github.com/marttp/auth-nest-graphql
nest on top of fastify with mongo and graphql passwort jwt and bcrypt
https://github.com/marttp/auth-nest-graphql
Last synced: 3 months ago
JSON representation
nest on top of fastify with mongo and graphql passwort jwt and bcrypt
- Host: GitHub
- URL: https://github.com/marttp/auth-nest-graphql
- Owner: marttp
- Created: 2021-05-07T19:31:31.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-04-23T15:48:10.000Z (about 5 years ago)
- Last Synced: 2025-07-21T13:42:52.873Z (11 months ago)
- Homepage: https://www.fernandoboza.com/portfolio/how-to-build-a-nestjs-fastify-graph-ql-mongo-auth-api
- Size: 143 KB
- Stars: 0
- Watchers: 0
- Forks: 8
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
A Nest.js template for building with auth and mongo. Basic CRUD functionality for user.
Lite and schema agnostic.
## Installation
```bash
$ npm install
```
## Running the app
```bash
# development
$ npm run start
# watch mode
$ npm run start:dev
# production mode
$ npm run start:prod
```
## Test
```bash
# unit tests
$ npm run test
# e2e tests
$ npm run test:e2e
# test coverage
$ npm run test:cov
```