Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Google で検索しましたが、 webRTC と node.js を使用してテキスト チャット アプリケーションを作成する方法の適切な例が得られませんでした。
誰かがこれを行う方法を知っている場合は、詳細を共有してください。
webRTC はピアツーピア通信を使用するため、チャットを行うために node.js は必要ない場合があります。
ただし、node.js を使用してシグナリングを行い、通信をセットアップすることもできます (たとえば、Websockets を使用)。RTCPeerConnection を起動して実行したら、RTCDataChannel を使用してテキストを送信できます。
以下のリンクから始めることができます
http://simpl.info/rtcdatachannel/