Sign Up for Free

RunKit +

Try any Node.js package right in your browser

This is a playground to test code. It runs a full Node.js environment and already has all of npm’s 1,000,000+ packages pre-installed, including rtcmulticonnection with all npm packages installed. Try it out:

// https://tonicdev.com/npm/rtcmulticonnection var RTCMultiConnection; try { RTCMultiConnection = require('rtcmulticonnection'); } catch(e) { RTCMultiConnection = require('./dist/RTCMultiConnection.js'); } var connection = new RTCMultiConnection(); connection.enableLogs = true; // test only data channels connection.session = { data: true }; connection.dontCaptureUserMedia = true; console.log('\n------\n'); connection.open('room-id', function(isRoomOpened, roomid, error) { if(isRoomOpened === true) { console.log('Room opened: ' + roomid) } if(error) { console.log('Unable to open room: ' + error); } }); console.log('\n------\n'); console.log(connection); process.exit()

This service is provided by RunKit and is not affiliated with npm, Inc or the package authors.

rtcmulticonnection v3.7.1

RTCMultiConnection is a WebRTC JavaScript wrapper library runs top over RTCPeerConnection API to support all possible peer-to-peer features.

RunKit is a free, in-browser JavaScript dev environment for prototyping Node.js code, with every npm package installed. Sign up to share your code.
Sign Up for Free