Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ahm3tcelik/nest-example-without-db
Nest.js (TypeScript) example app without database.
https://github.com/ahm3tcelik/nest-example-without-db
nestjs nestjs-auth nestjs-jwt nestjs-role nestjs-swagger
Last synced: 11 days ago
JSON representation
Nest.js (TypeScript) example app without database.
- Host: GitHub
- URL: https://github.com/ahm3tcelik/nest-example-without-db
- Owner: ahm3tcelik
- Created: 2021-05-07T13:53:00.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-05-11T18:36:51.000Z (over 3 years ago)
- Last Synced: 2024-11-05T19:11:55.559Z (about 2 months ago)
- Topics: nestjs, nestjs-auth, nestjs-jwt, nestjs-role, nestjs-swagger
- Language: TypeScript
- Homepage:
- Size: 214 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[circleci-image]: https://img.shields.io/circleci/build/github/nestjs/nest/master?token=abc123def456
[circleci-url]: https://circleci.com/gh/nestjs/nest
## Description[Nest](https://github.com/nestjs/nest).js example Web Service.
- [X] Swagger Documentation
- [X] JWT Authentication (Acess-Refresh token)
- [X] Role Based Authorization
- [X] E2E (Integration) tests## 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
```