Socket
Socket
Sign inDemoInstall

rtcmulticonnection-jarvis

Package Overview
Dependencies
25
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    rtcmulticonnection-jarvis

RTCMultiConnection socket.io server


Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Install size
4.19 MB
Created
Weekly downloads
 

Readme

Source

RTCMultiConnection Socket.io Server

npm downloads

Since version 1.3.1: now rtcmulticonnection-server does not creates any HTTP server.

Now you need to use this: require('rtcmulticonnection-server').addSocket(socket) where socket is your socket.io connection object.

It means that now you can integrate rtcmulticonnection-server inside any socket.io application or expressjsj/angular frameworks.

npm install rtcmulticonnection-server

# either
node server.js --help

# or
require('rtcmulticonnection-server').addSocket(socket);

Installation Guide:

Free socket.io servers

connectin.socketURL = 'https://rtcmulticonnection.herokuapp.com:443/';
connectin.socketURL = 'https://webrtcweb.com:9002/';

config.json

Integrate inside nodejs applications

const ioServer = require('socket.io');
const RTCMultiConnectionServer = require('rtcmulticonnection-server');

ioServer(httpApp).on('connection', function(socket) {
    RTCMultiConnectionServer.addSocket(socket);
});

For more information:

Demos

License

RTCMultiConnection Socket.io Server is released under MIT licence . Copyright (c) Muaz Khan.

Keywords

FAQs

Last updated on 27 Feb 2020

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc