An open API service indexing awesome lists of open source software.

https://github.com/irfani92/todolist-restapi-nestjs

To do list rest api with nest js
https://github.com/irfani92/todolist-restapi-nestjs

nestjs-backend rest-api

Last synced: 8 months ago
JSON representation

To do list rest api with nest js

Awesome Lists containing this project

README

          


Nest Logo

## Description

To do list with Rest API with simple functional such as :
- CRUD
- Send Email
- JWT Auth
- Relationanl
- Prisma Migration
- Simple Unit Testing
- Compodoc
- Swagger
- Docker

## 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

# run smtp local
$ docker run --rm -p 25:25 -p 8025:80 rnwood/smtp4dev

# run compodoc
npx @compodoc/compodoc -p tsconfig.json -s
```