Flutter Chat App with Node.js, WebSockets and MySQL

A Flutter Chat App that supports live video and audio calls streaming with WebRTC, built with Node.js, MySQL, and WebSockets.

This is a Flutter Chat App without Firebase, but if it doesn’t fit for you, it can still be an example of a template to build your Flutter Chat UI

The Node.js server uses Askless for streaming data changes to the Flutter App through WebSockets, so the Flutter widgets are updated in realtime.

Because this project uses TypeORM, you can easily change the database to make this a Flutter Chat App with PostgreSQL, rather than with MySQL

The text messages are also saved in the user device with Hive, so the user doesn’t need to be connected to the internet to see his received messages.

commented_askless_example.mp4

🔊 The video above contains audio, click on the right side to turn it on

Getting started

  1. Go to nodejs_websocket_backend and install the dependencies by running npm install

  2. The Node.js server uses TypeORM, TypeORM supports several databases like MySQL, PostgreSQL, MariaDB, SQLite, MS SQL Server, Oracle, SAP Hana and WebSQL. So the first step is to configure the database of your choice. Add your database configuration on nodejs_websocket_backend/src/environment/db.ts, don’t commit this file to your repository

  3. In nodejs_websocket_backend/src/environment/jwt-private.key, replace the JWT private key with your own random text, don’t also commit this file to your repository

  4. Start your node.js backend server by running the command npm run dev, it will print its URL in the console (local network).

  5. Go to the App created with Flutter on flutter_app/lib/core/data/data_sources/connection_remote_ds.dart and replace the serverUrl with the URL and port that your node.js backend is running

  6. Go to flutter_app/lib/environment.dart and replace the localStorageEncryptionKey with your own random text. don’t commit this file to your repository as well.

  7. Run flutter pub get to get the Flutter dependencies

  8. Run the Flutter project on your device 🙂

Issues

Feel free to open an issue about:

  • ❔ questions

  • 💡 suggestions

  • 🐜 potential bugs

License

MIT

Contacting me

📧 [email protected]

GitHub

View Github