https://github.com/suiramdev/whatsapp-clone
🚀 A communication tool like What's APP on the web
https://github.com/suiramdev/whatsapp-clone
firebase firebase-database firestore materialui reactjs whatsapp
Last synced: 3 months ago
JSON representation
🚀 A communication tool like What's APP on the web
- Host: GitHub
- URL: https://github.com/suiramdev/whatsapp-clone
- Owner: suiramdev
- License: mit
- Created: 2020-10-18T23:43:50.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-03-24T15:03:11.000Z (over 5 years ago)
- Last Synced: 2025-06-24T23:43:05.185Z (about 1 year ago)
- Topics: firebase, firebase-database, firestore, materialui, reactjs, whatsapp
- Language: JavaScript
- Homepage: https://suiramdev.github.io/whatsapp_clone
- Size: 3.05 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# WHAT'S APP CLONE
A communication tool such as What's App with ReactJS and Firebase on web.
[Preview](https://suiramdev.github.io/whatsapp_clone)
## Built With
- [ReactJS](https://reactjs.org) - A JavaScript library for building user interfaces
- [Material-UI](https://material-ui.com) - A popular React UI framework
- [Firebase](https://firebase.google.com) - A real time database with no sql
## License
This project is licensed under the MIT License - see the LICENSE file for details
## Development note
### Firestore database lookup
```json
{
"users": {
uid: {
"email": "",
"id": XXXXXX
}
},
"conversations": {
uid: {
"participants": {
uid,
...
},
"messages": {
{
"from": uid,
"content": "",
"date": XXXXXXX
}
}
}
}