| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
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:
connectin.socketURL = 'https://rtcmulticonnection.herokuapp.com:443/';
connectin.socketURL = 'https://webrtcweb.com:9002/';const ioServer = require('socket.io');
const RTCMultiConnectionServer = require('rtcmulticonnection-server');
ioServer(httpApp).on('connection', function(socket) {
RTCMultiConnectionServer.addSocket(socket);
});For more information:
RTCMultiConnection Socket.io Server is released under MIT licence . Copyright (c) Muaz Khan.
| Back | FazBrowse Home | New Git URL |