Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
webrtc-explorer
Advanced tools
Chord inspired ring DHT algorithm using WebRTC as transport layer for P2P in the browser
tl;dr ring inspired ring DHT algorithm using WebRTC as transport layer for P2P in the browser. You can find more about how it works underneath at HOW_DOES_IT_WORK
It enables you to communicate between several browsers in a p2p/decentralized fashion though a DHT.
![Gitter](https://badges.gitter.im/Join Chat.svg)
webrtc-ring uses browserify
var ring = require('webrtc-ring');
var nodeConfig = {
signalingURL: 'http://url-to-webrtc-ring-signaling-server.com'
};
var node = ring.createNode(nodeConfig);
node.e.on('ready', function () {
// this node is ready
});
Send a message to a Node responsible for the ID 1af17e73721dbe0c40011b82ed4bb1a7dbe3ce29
var toId = '1af17e73721dbe0c40011b82ed4bb1a7dbe3ce29';
// 160 bit ID represented in hex(`git_sha1` module is a good way to generate these)
node.send(destID: toId,
data: 'hey, how are you doing');
Send a message to this node sucessor (next node in ring)
node.sendSucessor(data: 'hey, how are you doing');
Receive a message
node.e.on('message', function(message) {
console.log(message);
});
add the logging flag to your nodeConfig
var nodeConfig = {
//...
logging: true
//...
};
FAQs
P2P Network Routing Overlay designed for the Web platform (browsers)
We found that webrtc-explorer 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
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.