Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Chat | 10,739 | 1 | 2 days ago | 159 | July 07, 2023 | 32 | gpl-3.0 | Go | ||
Instant messaging platform. Backend in Go. Clients: Swift iOS, Java Android, JS webapp, scriptable command line; chatbots | ||||||||||
Im Server | 7,382 | 13 days ago | 11 | other | Java | |||||
即时通讯(IM)系统 | ||||||||||
Messenger | 4,601 | 8 hours ago | mit | Swift | ||||||
Open source alternative communication platform. | ||||||||||
Ricochet | 3,411 | 4 years ago | 176 | other | C++ | |||||
Anonymous peer-to-peer instant messaging | ||||||||||
Im_service | 1,772 | a year ago | 4 | October 24, 2021 | 2 | gpl-2.0 | Go | |||
golang im server | ||||||||||
Chat Sdk Android | 1,584 | 19 | a month ago | 9 | August 22, 2023 | 8 | other | Java | ||
Chat SDK Android - Open Source Mobile Messenger | ||||||||||
Relatedchat | 1,573 | 8 hours ago | Swift | |||||||
Open source alternative communication platform | ||||||||||
Turms | 1,473 | 2 | 18 hours ago | 1 | December 08, 2022 | 417 | apache-2.0 | Java | ||
🕊️ The world's most advanced open source instant messaging engine for 100K~10M concurrent users https://turms-im.github.io/docs | ||||||||||
Chat Sdk Ios | 893 | 5 | a month ago | 109 | May 15, 2022 | 45 | other | Objective-C | ||
Chat SDK iOS - Open Source Mobile Messenger | ||||||||||
Deltachat Core Rust | 552 | 5 | 3 | 7 hours ago | 133 | October 01, 2022 | 123 | other | Rust | |
Delta Chat Rust Core library, used by Android/iOS/desktop apps, bindings and bots |
An unreliable web based instant messaging application.
On Google Cloud Shell or Linux (or macOS perhaps, I did not test) with the Google App Engine SDK installed -
build_scripts/serve.sh
Or, on any platform with the Google App Engine SDK installed -
python dev_appserver.py .
And then go to localhost:8080/redirect-to-converse
. You can use foo
or baz
as the user name and be sure to read the comment in messenger/authentication.py
first (alternatively, set IS_PRIVATE_MESSENGER to False in messenger/constants.py
or in your messenger/configuration.py
- see the Customization Options section below).
It was built due to the huge disappointment I had with Google Talk/GMail Chat/any other name Google picked at the time, because Google Talk was not reliable - I missed messages that were sent to me, others missed messages I sent to them and sometimes messages did not even reach the server and the sender was not notified about that fact.
It was supposed to be reliable and robust against transport issues, without false positives.
However, due to the multiple process/threads nature of Python 2.7 Google App Engine and the fundamental inability of the current code to lock the storage space, it did lose messages.
Still, it was a learning experience in Python.
Note - the JavaScript was already written before the Python version. It used to be a classic ASP messenger.
You can create messenger/configuration.py
with the following content in order to customize it -
import os
CUSTOM_JID_HOST_NAME = 'appspot.com'
CUSTOM_HOST_NAME = 'messenger.appspot.com'
CUSTOM_DEV_HOST_NAME = 'localhost:8080'
CUSTOM_APPLICATION_ID = 'messenger'
CUSTOM_APPLICATION_EMAIL_DOMAIN = "%s.appspotmail.com" % CUSTOM_APPLICATION_ID
CUSTOM_APPLICATION_VERSION = os.environ.get('CURRENT_VERSION_ID');
CUSTOM_TEST_MODE_CHANNEL_PREFIX = '____test_mode____'
CUSTOM_IS_PRIVATE_MESSENGER = False
CUSTOM_DEV_MODE = True
CUSTOM_APPLICATION_NAME = 'Messenger'
CUSTOM_PRIVATE_APPLICATION_NAME = 'Blank'
CUSTOM_USER_LIST = None
The client and the server are not secure (other than HTTPS). While SQL injection are probably not possible (simply because SQL is not used), you can absolutely inject scripts into messages and any HTML is accepted.
MIT. Enjoy.
Creative Commons 0. Enjoy.
Copyright (c) 2009 jwplayer.com
License -
Attribution-NonCommercial-ShareAlike 2.0 Generic (CC BY-NC-SA 2.0)
http://creativecommons.org/licenses/by-nc-sa/2.0/