Skip to content

RTCMultiConnection socket.io server (npm install rtcmulticonnection-server)

License

Notifications You must be signed in to change notification settings

grantjr1842/RTCMultiConnection-Server

This branch is up to date with muaz-khan/RTCMultiConnection-Server:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

709dde8 · Mar 18, 2022

History

31 Commits
Nov 23, 2018
Jan 10, 2019
Oct 8, 2018
Oct 8, 2018
Jun 28, 2020
Oct 7, 2018
Mar 18, 2022
Mar 18, 2022
Nov 4, 2018
Oct 8, 2018
Mar 18, 2022
Jan 10, 2019

Repository files navigation

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://muazkhan.com:9001/';

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.

About

RTCMultiConnection socket.io server (npm install rtcmulticonnection-server)

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 99.7%
  • Dockerfile 0.3%