https://github.com/igi-111/webrtc-messaging
https://github.com/igi-111/webrtc-messaging
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/igi-111/webrtc-messaging
- Owner: IGI-111
- Created: 2019-12-14T21:18:32.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-07T04:27:23.000Z (almost 3 years ago)
- Last Synced: 2024-11-01T05:02:35.851Z (11 months ago)
- Language: TypeScript
- Size: 2.35 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Small WebRTC point-to-point messaging experiment.
The server side contains a WebSocket based signalling service and a STUN server to coordinate peer connections.
Run it with:
```
cd server
cargo run
```The client side contains a simple React interface to connect to another peer and send messages through.
Set up the correct hostname to contact the server in `client/src/config.json`
Run it with:
```
cd client
yarn && yarn start
```Opening a server and two client pages will allow you to connect two clients together and exchange messages.