All Projects → bachors → Chat Realtime

bachors / Chat Realtime

Licence: mit
Public & Private message. MySQL & Firebase.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Chat Realtime

Chat21 Ios Sdk
DEPRECATED
Stars: ✭ 15 (-89.8%)
Mutual labels:  firebase, chat, chat-application, realtime
Space
A real time chat app for developers built using React, Redux, Electron and Firebase
Stars: ✭ 161 (+9.52%)
Mutual labels:  firebase, chat, chat-application
Chat21 Android Sdk
Android Chat SDK built on Firebase
Stars: ✭ 204 (+38.78%)
Mutual labels:  firebase, chat, chat-application
Falconmessenger
🌟🌟🌟🌟🌟 Falcon Messenger is a Fast and Beautiful cloud-based messaging app. With iOS and IPadOS Support. Available on the App Store.
Stars: ✭ 310 (+110.88%)
Mutual labels:  firebase, chat, chat-application
Messenger
Open source, native iOS Messenger, with realtime chat conversations (full offline support).
Stars: ✭ 4,264 (+2800.68%)
Mutual labels:  firebase, chat, chat-application
Ionic Chat With Firebase
IONIC Chat With Firebase
Stars: ✭ 53 (-63.95%)
Mutual labels:  firebase, chat, chat-application
Space Cloud
Open source Firebase + Heroku to develop, scale and secure serverless apps on Kubernetes
Stars: ✭ 3,323 (+2160.54%)
Mutual labels:  mysql, firebase, realtime
Vuejs Slack Clone Realtime
Slack clone using VueJS and firebase
Stars: ✭ 33 (-77.55%)
Mutual labels:  firebase, chat, realtime
Chatair Android
🔥 A highly advance featured chat app in android using Firestore
Stars: ✭ 132 (-10.2%)
Mutual labels:  firebase, chat, chat-application
Kotlin Firebase Group Chat
Group and OneonOne chat using firebase built in Kotlin similar to whatsapp.
Stars: ✭ 44 (-70.07%)
Mutual labels:  firebase, chat, realtime
Tiledesk Dashboard
The Tiledesk dashboard. Tiledesk is an Open Source Live Chat platform written in NodeJs, firebase and Angular.
Stars: ✭ 53 (-63.95%)
Mutual labels:  firebase, chat, realtime
Next
Directus is a real-time API and App dashboard for managing SQL database content. 🐰
Stars: ✭ 111 (-24.49%)
Mutual labels:  mysql, realtime
Livehelperchat
Live Helper Chat - live support for your website. Featuring web and mobile apps, Voice & Video & ScreenShare. Supports Telegram, Twilio (whatsapp), Facebook messenger including building a bot.
Stars: ✭ 1,583 (+976.87%)
Mutual labels:  chat, chat-application
React Native Firebase Chat
React Native chat application using firebase.
Stars: ✭ 113 (-23.13%)
Mutual labels:  firebase, chat-application
Realtimechat
Open source, native iOS Messenger, with realtime chat conversations (full offline support).
Stars: ✭ 1,511 (+927.89%)
Mutual labels:  chat, chat-application
Applozic Ios Sdk
iOS Real Time Chat & Messaging SDK
Stars: ✭ 104 (-29.25%)
Mutual labels:  chat, chat-application
Nukeviet
NukeViet CMS is multi Content Management System. NukeViet CMS is the 1st open source content management system in Vietnam. NukeViet was awarded the Vietnam Talent 2011, the Ministry of Education and Training Vietnam officially encouraged to use.
Stars: ✭ 113 (-23.13%)
Mutual labels:  mysql, jquery
Android yichat lite
android client
Stars: ✭ 118 (-19.73%)
Mutual labels:  chat, chat-application
Ios
Tinodios: Tinode Messaging Client for iOS
Stars: ✭ 119 (-19.05%)
Mutual labels:  chat, chat-application
Im service
golang im server
Stars: ✭ 1,694 (+1052.38%)
Mutual labels:  chat, chat-application

Chat-Realtime

Aplikasi ini akan selalu bersetatus (BETA) Karena akan terus di update & dikembangkan. Maka dari itu jangan lupa di fork & like ya sob :).

Aplikasi ini dibuat menggunakan:

  • PHP
  • MySQL PDO
  • Bootstrap
  • jQuery
  • Firebase
  • Fontawesome
  • Emoji-picker

Fitur:

  • Public rooms chat.
  • Private chat with user.
  • Send message with emoticon, images & videos.
  • search user.
  • Load more message.

Realtime:

  • Status user online or offline.
  • Push new user login.
  • Push new message.
  • Push inbox count.

Penggunaan:

1. Import database db/chat_realtime.sql
  1. Setting database php/config.php
<?php

// Image dir
$imageDir = "image";

// Replace with: your database account
$username     = "REPLACE";
$password     = "REPLACE";
$host         = "REPLACE";
$name         = "chat_realtime";
  1. Setting firebase & MySQL API js/config.js
// Domain
const domain = "http://REPLACE";

// MySQL API
const apis = 'api.php';

// set image directori
const imageDir = 'image';

// Replace with: your firebase account
const config = {
    apiKey: "REPLACE",
    databaseURL: "https://REPLACE.firebaseio.com"
};
firebase.initializeApp(config);

// create firebase child
const dbRef = firebase.database().ref();

const messageRef = dbRef.child('message');
const userRef = dbRef.child('user');

Done :)

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].