Skip to content

Latest commit

 

History

History
 
 

NestVueChat

Nestjs file uploading

Nestjs Vue real-time chat, which utilizes Websockets to implement real-time communication in Nestjs. For an in-depth explanation of the application, you can follow this article.

Requirements

Getting started

Installing dependencies

First, you need to install all the needed dependencies.

$ npm install

Starting the application

After installing the dependencies, you can run the application using one of the following commands.

# development
$ npm run start

# watch mode
$ npm run start:dev

# production mode
$ npm run start:prod

Testing the application

After starting the application, you should see our layout when visiting http://localhost:3000 in your browser. After opening the application in multiple browser windows, you can test the functionality.