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

https://github.com/velascoandres/react-chat

react-chat is a chat application built with react and nestjs. It uses jwt for handling authentification for users and websockets.
https://github.com/velascoandres/react-chat

chat-application jwt nestjs reactjs socket-io typescript

Last synced: 3 months ago
JSON representation

react-chat is a chat application built with react and nestjs. It uses jwt for handling authentification for users and websockets.

Awesome Lists containing this project

README

          

# React Chat app

## Frontend App (client-folder)

Just install the dependencies and start the app:

```text
npm i

npm run start
```

## Backend (server folder)

If you have docker installed on your machine just
run the `docker-compose` file to setup the following images:

* Mongodb
* Redis

```text
docker-compose up -d
```

Install the dependencies

```text
npm i
```

Run the server on development mode

```text
npm run start:dev
```

### Screenshots