Skip to content

"HiOChat is a free web-based group chat application that allows users to engage in real-time conversations. It functions similarly to popular messaging platforms like WhatsApp and LINE.

Notifications You must be signed in to change notification settings

Behroz-b4/HiOChat

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

HiOChat is a free web-based group chat application that allows users to engage in real-time conversations. It functions similarly to popular messaging platforms like WhatsApp and LINE. HiOChat enables users to create and join group chats, send and receive messages instantly, and enjoy a seamless chatting experience—all through a simple, browser-accessible interface.

Step 1: Create Firebase Account

1. Create Authentication with email and password.

2. Create Firestore Database and rules below:

rules_version = '2';
service cloud.firestore {
  match /databases/{database}/documents {
    match /messages/{document} {
      allow read, create: if request.auth != null;
    }
    match /users/{userId} {
      allow read: if request.auth != null;
      allow write: if request.auth.uid == userId;
    }
  }
}

Demo Screenshort

Live Demo link: HiOChat



HiOChat SS1 HiOChat SS2 HiOChat SS3

About

"HiOChat is a free web-based group chat application that allows users to engage in real-time conversations. It functions similarly to popular messaging platforms like WhatsApp and LINE.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published