https://github.com/gregman-js/webrtc-streaming-platform
Create room and talk with others, easily find rooms on homepage
https://github.com/gregman-js/webrtc-streaming-platform
Last synced: about 2 months ago
JSON representation
Create room and talk with others, easily find rooms on homepage
- Host: GitHub
- URL: https://github.com/gregman-js/webrtc-streaming-platform
- Owner: Gregman-js
- License: gpl-3.0
- Created: 2020-08-02T19:23:24.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-13T11:02:50.000Z (over 2 years ago)
- Last Synced: 2025-03-27T05:42:05.330Z (about 2 months ago)
- Language: HTML
- Size: 382 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# WebRTC-Stream-Platform
Create room and talk with others, easily find rooms on homepage

## Installation
```bash
npm install
```### Install certificates
```bash
openssl genrsa -out key.pem
openssl req -new -key key.pem -out csr.pem
openssl x509 -req -days 9999 -in csr.pem -signkey key.pem -out cert.pem
rm csr.pem
```## Running
```bash
npm run devStart
```
OR
```bash
node server.js
```
### Parameters
- `--http-port=3000` http port (default: 3000)
- `--https-port=3001` https port (default: 3001)