A screen sharing service for Vebko company using WebRTC.
View Demo as a presenter
View Demo as a viewer
vebko-screen-sharing.mp4
Table of Contents
Web-based screen sharing service for Vebko This service uses WebRTC to share screens and sound.
Here's why:
- WebRTC has less delay than other alternatives.
- Works on all devices and browsers without any requirments 😄
For running this service you have to install the requirments.
to install front and back:
-
Clone the repe
-
Install NPM packages
npm install
-
Serv the files (you can use http-server and include .certs)
- Generate a
self-signed certificate
# install openssl 4 ubuntu
apt install openssl
# install openssl 4 mac
brew install openssl
# self-signed certificate
openssl genrsa -out key.pem
openssl req -new -key key.pem -out csr.pem
openssl x509 -req -days 9999 -in csr.pem -signkey key.pem -out cert.pem
rm csr.pem
# https://www.sslchecker.com/certdecoder
-
run
server.js
onhttps
-
Change Certs inside cert directory
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
Distributed under the MIT License. See LICENSE.txt
for more information.