Skip to content

Latest commit

 

History

History
56 lines (47 loc) · 1.52 KB

README.md

File metadata and controls

56 lines (47 loc) · 1.52 KB

PeerConnect Backend

This is the backend for the PeerConnect application, which provides APIs for user authentication, video call functionality using PeerJS, and real-time communication using Socket.IO.

Table of Contents

Installation

  1. Clone the repository:
git clone https://github.com/pandarudra/PeerConnect-Backend.git
cd peerconnect
  1. Install the dependencies:
npm install
server/
├── API Test/
│ └── [req.rest](http://_vscodecontentref_/1)
├── controllers/
│ └── [user.ctrl.js](http://_vscodecontentref_/2)
├── db/
│ └── [dbconfig.js](http://_vscodecontentref_/3)
├── [index.js](http://_vscodecontentref_/4)
├── Mail/
│ └── [mail.js](http://_vscodecontentref_/5)
├── middlewares/
│ └── [auth.js](http://_vscodecontentref_/6)
├── models/
│ └── [user.model.js](http://_vscodecontentref_/7)
├── routes/
│ └── [router.js](http://_vscodecontentref_/8)
├── socket.io/
│ └── [socket.js](http://_vscodecontentref_/9)
├── utils/
│ └── [hasher.js](http://_vscodecontentref_/10)
├── webRTC/
│ └── [peerService.js](http://_vscodecontentref_/11)
├── .env
├── .gitignore
├── [package.json](http://_vscodecontentref_/12)
└── [README.md](http://_vscodecontentref_/13)