An open API service indexing awesome lists of open source software.

https://github.com/hangsbreaker/firebase-realtime-chat

Firebase realtime database with chat
https://github.com/hangsbreaker/firebase-realtime-chat

Last synced: 3 months ago
JSON representation

Firebase realtime database with chat

Awesome Lists containing this project

README

          

# firebase-realtime-chat
Simple chat app with Firebase realtime database

URL Reference

- Tutorial
https://www.cometchat.com/tutorials/how-to-build-a-chat-app-with-firebase
- Doc query get by url json data
https://firebase.google.com/docs/database/rest/retrieve-data

Firebase example rule


{
"rules": {
"messages":{
".indexOn":["timestamp"]
},
".read": true,
".write": true,
}
}