Скрипты P2P (peer to peer) open-source чатов
PeerJS - скрипт основан на WebRTC, и работает на PeerServer который работает на node.js
Коннект
var conn = peer.connect('another-peers-id');
conn.on('open', function(){
conn.send('hi!');
});
Получить
peer.on('connection', function(conn) {
conn.on('data', function(data){
// Will print 'hi!'
console.log(data);
});
});
https://github.com/peers/peerjsotr.to - скрипт зашифрованного чата с само уничтожающимися сообщениями
https://github.com/OTRMan/otr.to-chat
jquery-chat - скрипт чата построенного на jQuery + Node.js + Socket.IO
https://github.com/lovelle/jquery-chat
converse.js - мощный скрипт чата основанного на XMPP протоколе
https://github.com/jcbrand/converse.js
rocket.chat - мощный скрипт чата на Meteor(js платформа)
https://github.com/RocketChat/Rocket.Chat
lets-chat - мощный скрипт чата работающего на Node.js и MongoDB и поддерживает XMPP
https://github.com/sdelements/lets-chat