A progressive Node.js framework for building efficient and scalable server-side applications.
Chat room with several features : message encryption, multiple rooms and etc. The app has been written with the help of NestJs. For working the app code, we will need to install yarn,Postgresql,and nestjs framework(nestjs can be installed via yarn).
$ cp .env.example .env.local
$ cd ./frontend
$ cd .env.example .env.local
$yarn
$ cd ..
$ yarn install
Additionally,we will need to start postgresql service on our machine.We should create database whose name should be same with the database name in /my-chat-room/.env.local file.
#in my-chat-room/ folder:
$ yarn run start:dev
# in my-chat-room/frontend folder:
$ yarn vite
# unit tests
$ yarn run test
# e2e tests
$ yarn run test:e2e
# test coverage
$ yarn run test:cov
Nest is MIT licensed.