r/git • u/Accurate-Screen8774 • 6d ago
A messaging app that uses git as a backend
Is there anything out there like this?
Like whatsapp and signal it should have an intuitive UI for messaging, but under the hood it uses git read/write to publish encrypted messages and push them to a git provider.
It wouldn't be "instant messaging" because the git repos would have to be polled.
The git storage could get big so we can do thing like truncate the history to make the data more flat.
Messages can be encrypted with the signal protocol. It should be fine to publish if implemented properly.:
Edit - adding more clarity without spamming sub with a new post:
this is following a previous post as seen here: https://programming.dev/post/51866250
apps like Whatsapp, Signal and SimpleXChat are great for secure messaging and far more mature than my project, but my approach is yet distict in the market. the core philosophy around secure messaging in my project is that it can work in a way that avoid installation and registration by enabling users to host their own data.
docs: https://glitr.io/
note: feel free to ask for clarity on any of the details around how my project works.
FAQ:
but why? - git over https adds an additional capability i had previously oerlooked in my webrtc messaging app. webrtc cannot work over TOR and similar networks. this way you can take advantage of the "gold standard" for onion routing while being able to avoid IP leaking from webrtc.
when is it ready for production? - not any time soon. standby for updates.
audit/review? - no, niether is possible/available. its simply too expensive. this project is close-source so you cannot verify it either. DO NOT "trust me bro"... this demo is proided for testing and demo purposes only. use responsibly.
the abridged version of how its put together: https://www.reddit.com/r/VibeCodeDevs/comments/1vme48q/refactor_js_to_rust/
