Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
tfx-signaller
Advanced tools
A simple signaling server for clients to connect and do signaling for WebRTC.
Specifically created as a default connection point for SimpleWebRTC.js
It also supports vending STUN/TURN servers with the shared secret mechanism as described in this draft. This mechanism is implemented e.g. by rfc-5766-turn-server or by a patched version of restund.
Read more:
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.
npm install
run the server using "node server.js"
In the console you will see a message which tells you where the server is running:
"signal master is running at: http://localhost:8888"
Open a web browser to the specified URL and port to ensure that the server is running properly. You should see the message
"Welcome to socket.io"
$ ./scripts/generate-ssl-certs.sh
$ NODE_ENV=production node server.js
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
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.
FAQs
Simple signaling server for tfx
The npm package tfx-signaller receives a total of 2 weekly downloads. As such, tfx-signaller popularity was classified as not popular.
We found that tfx-signaller demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.