https://github.com/yoursrijit/huu-chat-application-24
MERN Chat application using Daisy Ui, Socket io and several advanced tech. easy to use .let 's have a look
https://github.com/yoursrijit/huu-chat-application-24
daisy-ui nodejs react socket-io
Last synced: 4 months ago
JSON representation
MERN Chat application using Daisy Ui, Socket io and several advanced tech. easy to use .let 's have a look
- Host: GitHub
- URL: https://github.com/yoursrijit/huu-chat-application-24
- Owner: yourSrijit
- Created: 2024-07-31T17:30:29.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-08-01T07:50:47.000Z (12 months ago)
- Last Synced: 2025-01-20T17:25:32.613Z (6 months ago)
- Topics: daisy-ui, nodejs, react, socket-io
- Language: JavaScript
- Homepage:
- Size: 617 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Complete Chatting App with MERN Stack | JWT, Socket.io, MongoDB
[Live Link](https://huuu-chat-app.onrender.com/)## Here are some preview
---



---
Install Packages in Backend side
```
npm i express dotenv cookie-parser bcryptjs mongoose sockert.io jsonwebtoken
```### To Encrypt the password use bycryptjs Package
```
import bcrypt from "bcryptjs";//Hash password
const salt=await bcrypt.genSalt(10);
const HashPassword=await bcrypt.hash(password,salt);const isPasswordCorrect=await bcrypt.compare(password ,user.password || "");
```