Skip to content

taherfattahi/WebRTC-Screen-Sharing

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MIT License LinkedIn


Logo

Vebko Screen Sharing Service

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
  1. About The Project
  2. Getting Started
  3. Contributing
  4. License

About The Project

Product Name Screen Shot

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 😄

(back to top)

Getting Started

For running this service you have to install the requirments.

Installation

to install front and back:

  1. Clone the repe

  2. Install NPM packages

    npm install
  3. Serv the files (you can use http-server and include .certs)

(back to top)

Expose WebRTC Screen Sharing on HTTPS

  1. 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
  1. run server.js on https

  2. Change Certs inside cert directory

Contributing

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!

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/AmazingFeature)
  3. Commit your Changes (git commit -m 'Add some AmazingFeature')
  4. Push to the Branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

(back to top)

License

Distributed under the MIT License. See LICENSE.txt for more information.

(back to top)

About

Vebko Screen Sharing Service

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published