A simple messenger application built with Go, supporting user registration, login, message sending, editing, and deleting.
Explore the docs »
·
Report Bug
·
Request Feature
Table of Contents
MessenFlow is a basic yet functional messenger application that allows users to register, log in, and chat with others. Users can send, edit, and delete their own messages in real-time, leveraging WebSocket for instant communication. The backend is powered by Go, with a simple frontend built using HTML, CSS, and JavaScript. SQLite is used for data storage, keeping the application lightweight and easy to set up.
Below is an example of the login process:
![]() |
|---|
| Login process |
Example of interaction in the chat:
![]() |
|---|
| Chat interaction |
Shows how to edit a message:
![]() |
|---|
| Editing a message |
Example of deleting a message:
![]() |
|---|
| Deleting a message |
Here's how the application looks on a mobile device:
![]() |
|---|
| Application on mobile screen |
- Real-time messaging using WebSocket
- User registration and authentication
- Edit and delete messages
To get a local copy of this project up and running, follow the steps below.
Ensure you have Go installed on your machine. You can download it from Go's official website.
-
Clone the repository:
git clone https://github.com/Propolisss/MessenFlow.git
-
Navigate to the project directory:
cd MessenFlow -
Build and run the project:
You can specify the IP address and port on which the application will run. If not provided, the default values will be used.
To run with default settings (IP:
localhost, Port:8080):go run cmd/myapp/main.go
To run with custom IP and Port:
go run cmd/myapp/main.go --address=<your_ip> --port=<your_port>
Replace
<your_ip>with the desired IP address (e.g.,127.0.0.1), and<your_port>with the desired port number ( e.g.,8081). -
Open your browser and navigate to the specified address:
http://<your_ip>:<your_port>
If you used the default settings, navigate to:
http://localhost:8080
Once the server is running, you can register a new user, log in, and start sending messages to other registered users. You can also edit or delete your messages.
- Add online/offline status
- User authentication improvements
- Implementing user roles and permissions
- Adding file attachment support
- Enhance UI/UX with modern frameworks
- Add voice and video messages
- Add password encryption
- Refactor chatID system
- Add writing... status
See the open issues for a full list of proposed features (and known issues).
Contributions are what make the open source community an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this project better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature) - Commit your Changes (
git commit -m 'Add some AmazingFeature') - Push to the Branch (
git push origin feature/AmazingFeature) - Open a Pull Request
Distributed under the MIT License. See LICENSE for more information.




