Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/simplewebrtc/signalmaster
simple socket.io server for webrtc signaling
https://github.com/simplewebrtc/signalmaster
Last synced: 26 days ago
JSON representation
simple socket.io server for webrtc signaling
- Host: GitHub
- URL: https://github.com/simplewebrtc/signalmaster
- Owner: simplewebrtc
- License: other
- Created: 2013-01-23T07:26:13.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2020-11-16T20:12:26.000Z (almost 4 years ago)
- Last Synced: 2024-08-12T21:27:55.636Z (3 months ago)
- Language: JavaScript
- Size: 979 KB
- Stars: 1,304
- Watchers: 91
- Forks: 487
- Open Issues: 54
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-starred - simplewebrtc/signalmaster - simple socket.io server for webrtc signaling (others)
README
# Deprecated
The open-source version of SimpleWebRTC has been deprecated. This repository will remain as-is but is no longer actively maintained.
Read more about the "new" SimpleWebRTC (which is an entirely different thing) on https://simplewebrtc.com
# signalmasterA simple signaling server for clients to connect and do signaling for WebRTC.
Specifically created as a default connection point for [SimpleWebRTC.js](https://github.com/HenrikJoreteg/SimpleWebRTC)
It also supports vending STUN/TURN servers with the shared secret mechanism as described in [this draft](http://tools.ietf.org/html/draft-uberti-behave-turn-rest-00). This mechanism is implemented e.g. by [rfc-5766-turn-server](https://code.google.com/p/rfc5766-turn-server/) or by a [patched version](https://github.com/otalk/restund) of [restund](http://creytiv.com/restund.html).
Read more:
- [Introducing SimpleWebRTC and conversat.io](http://blog.andyet.com/2013/02/22/introducing-simplewebrtcjs-and-conversatio/)
- [SimpleWebRTC.com](http://simplewebrtc.com)
- [talky.io](https://talky.io)## Running
Running the server requires a valid installation of node.js which can be installed from the nodejs.org website. After installing the package you will need to install the node dependencies.
1) npm install
2) run the server using "node server.js"
3) In the console you will see a message which tells you where the server is running:
"signal master is running at: http://localhost:8888"
4) Open a web browser to the specified URL and port to ensure that the server is running properly. You should see the message when you go to the /socket.io/ subfolder (e.g. http://localhost:8888/socket.io/), you should see a message like this:
{"code":0,"message":"Transport unknown"}
### Production Environment
* generate your ssl certs```shell
$ ./scripts/generate-ssl-certs.sh
```
* run in Production mode```shell
$ NODE_ENV=production node server.js
```## Use with Express
var express = require('express')
var sockets = require('signalmaster/sockets')var app = express()
var server = app.listen(port)
sockets(server, config) // config is the same that server.js uses## Docker
You can build this image by calling:
docker build -t signalmaster https://github.com/andyet/signalmaster.git
To run the image execute this:
docker run --name signalmaster -d -p 8888:8888 signalmaster
This will start a signal master server on port 8888 exposed on port 8888.