https://github.com/minhphan46/chat_app_signalr
Web and Mobile Chat Application using SignalR and ASP .NET Core 8.0 with E2EE Message Encryption
https://github.com/minhphan46/chat_app_signalr
dotnet8 e2ee flutter react signalr
Last synced: 2 months ago
JSON representation
Web and Mobile Chat Application using SignalR and ASP .NET Core 8.0 with E2EE Message Encryption
- Host: GitHub
- URL: https://github.com/minhphan46/chat_app_signalr
- Owner: minhphan46
- License: mit
- Created: 2024-08-20T09:34:15.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-09-23T08:05:41.000Z (9 months ago)
- Last Synced: 2025-03-24T16:25:57.286Z (3 months ago)
- Topics: dotnet8, e2ee, flutter, react, signalr
- Language: C++
- Homepage:
- Size: 1 MB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Web and Mobile Chat Application using SignalR and ASP .NET Core 8.0
This project is a cross-platform chat application for both web and mobile, developed using SignalR and ASP.NET Core 8.0. The application supports real-time messaging with advanced features like public and private chat modes. Additionally, it includes End-to-End Encryption (E2EE) to ensure secure communication by encrypting messages on the client side, making them accessible only to the intended recipients.
## Key Features:
- Real-time Communication: Powered by SignalR for seamless, instant messaging.
- E2EE: Implementing End-to-End Encryption to protect user privacy and data security.
- Text and Image Messaging: Supports sending both text messages and images across web and mobile platforms.
- Public and Private Chats: Users can switch between public rooms or private, encrypted conversations.
- Cross-platform Compatibility: Accessible on both web and mobile platforms.
## Technologies Used:
- Web: React
- Mobile: Fluter
- Backend: ASP.Net Core 8.0
- Real time : SignalR
- Database: MongoDB
- Encryption: E2EE, AES, RSA
> _Note: the E2EE feature is in the Crypto branch_
> _Note: If you want to run server, you need to change MongoDB connection string in appsettings.json_
# Deployed Link
[Chat Web](https://chat-app-signalr.onrender.com/)
## How to Run:
1. Clone the repository:
```bash
git clone
```2. Navigate to the project directory:
```bash
cd chat_app
```3. Run the backend server:
```bash
cd chat_app_server
dotnet run
```4. Run the web client:
```bash
cd chat_app_client_web
npm install
npm start
```5. Run the mobile client:
```bash
cd chat_app_client_mobile
flutter pub get
flutter run
```## ❤️ Star the repo to support the project , Thanks 😉