Home

Awesome

##OTRTALK p2p off-the-record chat for nodejs

OTRTALK is a command line based chat application. Unlike most instant messenger applications it doesn't rely on centralised servers. Instead it utilises a DHT (Distributed Hash Table) similar to BitTorrent, called telehash.

There is also experimental support for discovery of buddies over mainline BitTorrent DHT network. Other discovery protocols will be added in future, with more focus towards privacy preserving protocols.

Install otrtalk with NPM

npm -g install otrtalk

Use sudo if necessary:

sudo npm -g install otrtalk

Read the Tutorial to get started.

How it works

otrtalk is built using three main components:

Using the TeleHash protocol we locate a peer which is also actively trying to connect to us. TeleHash attempts to traverse NATs, opening a path to our peer. A reliable UDP connection is then established using the ENet protocol. An OTR conversation is then started to securely exchanged messages.

otrtalk currently only supports synchronous two-party messaging, (both parties must be online at the same time to exchange messages).

Privacy & Security