Skip to content

Latest commit

 

History

History
26 lines (22 loc) · 881 Bytes

README.md

File metadata and controls

26 lines (22 loc) · 881 Bytes

Real Time Chat Web Application

This is a backend site of a full-stack real time chat web application. The frontend site is developed above Next.js, tailwind css, and several tools & libraries. For real time communication between user, I use websocket.

Features

  1. Authentication and Authorization
  2. Profile page
  3. Search users (you can add them as your friend)
  4. Friend list
  5. Chat with other users (real time chat)
  6. History chat. Your chat and your friends are stored in the database.

Getting Started

You can find the frontend repository here

  1. Clone this backend repository git clone https://github.com/iqbalpa/chat-app-backend.git
  2. Install the required packages
yarn install
  1. Run the backend application
yarn start:dev
  1. Run the frontend application
  2. Visit localhost:3001