/nestjs-email

simple Nestjs app to "handle" emails

Primary LanguageTypeScript

Nest Logo

A progressive Node.js framework for building efficient and scalable server-side applications.

NPM Version Package License NPM Downloads CircleCI Coverage Discord Backers on Open Collective Sponsors on Open Collective Support us

Description

email ui practice using Nestjs for the backend and Vite(Reactjs + typescript) for the frontend

Installation - run this inside both the [ frontend ] and [ backend ] folders

$ yarn install

Running the app [ backend ]

# development
# Start the Mongodb and Mongo-express containers first
$ docker compose up -d 

$ yarn run start

# watch mode
$ yarn run start:dev

# production mode
$ yarn run start:prod

Test [ backend ]

# unit tests
$ yarn run test

# e2e tests
$ yarn run test:e2e

# test coverage
$ yarn run test:cov

Running the app [ frontend ]

$ npm run dev