All Projects → srtucker22 → Glipchat

srtucker22 / Glipchat

Licence: mit
video chatroom using meteor + webrtc + react + redux

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Glipchat

Rocket.chat
The communications platform that puts data protection first.
Stars: ✭ 31,251 (+11061.07%)
Mutual labels:  meteor, webrtc
Pychat
webchat via WebSockets/WebRTC that allows messaging/video call/screen sharing
Stars: ✭ 152 (-45.71%)
Mutual labels:  webrtc, cordova
Cordova Plugin Iosrtc
Cordova iOS plugin exposing the WebRTC W3C API
Stars: ✭ 638 (+127.86%)
Mutual labels:  webrtc, cordova
Ews Javascript Api
EWS API for TypeScript/JavaScript - ported from OfficeDev/ews-managed-api - node, cordova, meteor, Ionic, Electron, Outlook Add-Ins
Stars: ✭ 241 (-13.93%)
Mutual labels:  meteor, cordova
Android Ddp
[UNMAINTAINED] Meteor's Distributed Data Protocol (DDP) for clients on Android
Stars: ✭ 271 (-3.21%)
Mutual labels:  meteor
Cordova Plugin Dialogs
Apache Cordova Plugin dialogs
Stars: ✭ 267 (-4.64%)
Mutual labels:  cordova
Biubiu
弹幕视频与直播网站
Stars: ✭ 266 (-5%)
Mutual labels:  webrtc
Cordova Plugin Geofence
Geofencing plugin for cordova
Stars: ✭ 261 (-6.79%)
Mutual labels:  cordova
Meteor Launchpad
A base Docker image for Meteor applications.
Stars: ✭ 276 (-1.43%)
Mutual labels:  meteor
Com.unity.webrtc
WebRTC package for Unity
Stars: ✭ 271 (-3.21%)
Mutual labels:  webrtc
Oorja
[archived] effortless video-voice chat with realtime collaborative features. extensible using react components 🙌
Stars: ✭ 270 (-3.57%)
Mutual labels:  webrtc
Canvas Designer
Collaborative, extendable, JavaScript Canvas2D drawing tool, supports dozens of builtin tools, as well as generates JavaScript code for 2D animations.
Stars: ✭ 268 (-4.29%)
Mutual labels:  webrtc
Cordova Httpd
Embed tiny web server into Cordova with a plugin
Stars: ✭ 271 (-3.21%)
Mutual labels:  cordova
Vscode Cordova
A Visual Studio Code extension providing intellisense, debug, and build support for Cordova and Ionic projects.
Stars: ✭ 267 (-4.64%)
Mutual labels:  cordova
Ion
Real-Distributed RTC System by pure Go and Flutter
Stars: ✭ 3,279 (+1071.07%)
Mutual labels:  webrtc
Cordova Plugin Admob
Basic Cordova Plugin for AdMob
Stars: ✭ 263 (-6.07%)
Mutual labels:  cordova
Zlmediakit
WebRTC/RTSP/RTMP/HTTP/HLS/HTTP-FLV/WebSocket-FLV/HTTP-TS/HTTP-fMP4/WebSocket-TS/WebSocket-fMP4/GB28181 server and client framework based on C++11
Stars: ✭ 5,248 (+1774.29%)
Mutual labels:  webrtc
Cupertino Pane
🎉📱Multi-functional panes and boards for next generation progressive applications
Stars: ✭ 267 (-4.64%)
Mutual labels:  cordova
Skylinkjs
SkylinkJS Javascript WebRTC SDK
Stars: ✭ 269 (-3.93%)
Mutual labels:  webrtc
Awesome Cordova
📱 A curated list of amazingly awesome Cordova libraries, resources and shiny things.
Stars: ✭ 269 (-3.93%)
Mutual labels:  cordova

glipchat

Overview

glipchat is a real-time video chatroom application. glipchat is powered by Meteor, with React + Redux + WebRTC on the frontend.

glipchat has been tested on the following:

  • Android 4.3+ cordova app (currently disabled)
  • Chrome
  • Chrome for Android (Android 5+)
  • Firefox
  • OS X (Electron application)

Other browsers and operating systems may not support WebRTC.

Live Demo

View the project at https://glipchat.herokuapp.com/

Motivation

glipchat's mission is to be a veritable OSS solution for multi-user multi-platform video conferencing -- a product regular people can use and developers can modify and build into their own products.

Installation

  1. Clone the project git clone https://github.com/srtucker22/glipchat.git

  2. Go to the primary directory cd glipchat

  3. Add a settings.json to the primary directory touch settings.json

  4. Add your personal settings for the following services included in glipchat (or remove the ones you don't want)

     {
       "admins": [{
         "name": "Administrator",
         "email": "[email protected]",
         "roles": ["admin"],
         "password": "ADMIN_PASSWORD"
       }],
       "google" : {
         "clientId" : "YOUR_CLIENT_ID",
         "clientSecret" : "YOUR_CLIENT_SECRET"
         "browserKey": "YOUR_BROWSER_KEY",
         "apiKey": "YOUR_API_KEY",
         "projectNumber": "YOUR_PROJECT_NUMBER"
       },
       "public": {
         "analyticsSettings": {
           "Google Analytics": {"trackingId": "YOUR_TRACKING_ID"},
           "Segment.io" : {"apiKey": "YOUR_API_KEY"}
         }
       }
     }
    
  5. Run the app with the settings npm start

Electron Notes:

glipchat uses electron to easily transform into a downloadable desktop app. The code for this app is located at private/electron

We use electron-simple-updater for building, publishing, and updating the electron application. View the [README]{https://github.com/srtucker22/glipchat/blob/master/private/electron/README.md} in private/electron for details on how to use these tools.

See download-button.component.js for how components reference this directory.

Android Cordova Notes:

In order to run video conferencing on glipchat as a cordova app, you will to have the latest version of Android Studio installed and you will need to use an actual Android device (currently tested with devices 4.3+). Plug in your device to your computer via USB and run

meteor run android-device -p {local port} --settings settings.json

In order to use Google auth, you will need to run the application from a live mobiles server (see [OAuth for Mobile Meteor Clients](https://github.com/meteor/meteor/wiki/OAuth-for-mobile-Meteor-clients] for details). To do this, first deploy your meteor application to a live server.

(e.g. meteor deploy {your-server-url} --settings settings.json)

Once the app is successfully deployed, run:

meteor run android-device --mobile-server {your-server-url} --settings settings.json

nice additional flags might be: --verbose --production

Please read the Meteor Cordova Integration docs for more details.

Application Design Overview

glipchat is an example of how to create a WebRTC video chatroom and also of how to integrate React with Redux in a Meteor app.

Don't know React or Redux? No problem!

The best way to describe React is that it is a view layer only.

Redux is a flavor of Flux, and is an architectural pattern that can be used with React to enable one-way data flows to a centralized application data store using an event system.

Read these useful guides to get a quick overview:

Routing is done with React Router

Routing in this application may not be obvious. Check out routes.js for the main router code.

glipchat uses RocketChat:Streamer to power the WebRTC communication.

Resources

Contributing

This project welcomes code contributions, bug reports and feature requests. Please see the guidelines in CONTRIBUTING.MD if you are interested in contributing.

License

The MIT License

Copyright (c) 2016 Glipcode https://glipcode.com

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].