cryptalk
1.2.9
cryptalk " style="max-width: 100%;">
Cyptalk は、HTML5/Node.js ベースのクライアント側 (E2EE) 暗号化インスタント チャットです
ホスト ポート 80 で公開されている Docker で最新のcryptalk実行するには、次のコマンドを実行して Docker ハブからそれをプルします。
sudo docker run -d --restart=always -p 80:8080 hexagon/ cryptalk
下のボタンをクリックしてください
このリポジトリのクローンを作成し、新しいディレクトリに入ります。
ビルドイメージ
docker build . --tag= " hexagon/ cryptalk "
コンテナを実行し、起動時の起動を有効にし、ホストでポート 80 に公開します
sudo docker run -d --restart=always -p 80:8080 hexagon/ cryptalk
http://<ip-of-server>/
を参照します。
終わり!
node.js をインストールします。正確な手順はプラットフォームとディストリビューションによって異なります。
npmからアプリをインストールする
npm install cryptalk -g
次に、次のコマンドを発行してアプリを起動します
cryptalk
http://localhost:8080
にアクセスします。
終わり!
Available commands:
Client:
/key StrongPassphrase Sets encryption key
/nick NickName Sets an optional nick
/mute Audio on
/unmute Audio off
/clear Clear on-screen buffer
/help This
/title Set your local page title
/torch AfterSeconds Console messages are torched
after this amount of seconds
(default 600).
Room:
/join RoomId Join a room
/leave Leave the room
/count Count participants
Host:
/connect Connect to host
/disconnect Disconnect from host
You can select any of the five last commands/messages with up/down key.
Due to security reasons, /key command is not saved, and command
history is automatically cleared after one minute of inactivity.
It is highly recommended to use incognito mode while chatting,
to prevent browsers from keeping history or cache.
node.js をインストールします (開発には 12.0 以上が必要)。正確な手順はプラットフォームとディストリビューションによって異なります。
このリポジトリのクローンを作成します
git clone https://github.com/Hexagon/cryptalk.git
cd cryptalk
npm から依存関係をプルします
npm install
サーバーを起動する
npm run start
http://localhost:8080
にアクセスします。
JavaScript を操作するには、 client/source/
のコードを編集します。変更をテストするには、まずnpm run build
実行してコードを lint し、ビルドし、縮小します。次に、サーバーを再起動します。