Skip to content

KTBsomen/RTCserver

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RTCserver

I am creating a new server to client push communication method based on webRTC and fcm

RTCserver will be used in the browser.

RTCclient will be used in nodejs

this readme is for rtcserver

https://cdn.jsdelivr.net/gh/KTBsomen/RTCserver@main/RTCserver/index.js

use it in your HTML code like

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>FCM & WebRTC Notifier Test</title>
</head>

<body>
  <h1>FCM & WebRTC Notifier Demo</h1>
  <div id="token_div">
    <label for="token">FCM Registration Token:</label>
    <output id="token"></output>
  </div>
  <div id="permission_div">
    <button id="request-permission-button">Request Permission</button>
  </div>
  <div id="messages"></div>
  <script src="https://cdn.jsdelivr.net/gh/KTBsomen/RTCserver@main/RTCserver/index.js"></script>
  <script>
    const rtcserver = new RTCserver({
      firebaseConfig: {
        apiKey: "your apikey",
        authDomain: "yourapp-da2d9.firebaseapp.com",
        projectId: "yourapp-da2d9",
        storageBucket: "yourapp-da2d9.appspot.com",
        messagingSenderId: "yourapp",
        appId: "yourapp-6fd70d3941c3",
        measurementId: "G-yourapp",
      },
      vapidKey: "your vapid",
      useServiceWorker: true,
      tokenServer: "http://localhost:3000/store/token/",
      tokenUserId: "somen",
      peerJsOptions: { id: "65464678ewtfsd6f8s79" }
    });
    document.getElementById('request-permission-button').addEventListener('click', async () => {
      try {
        var token = await rtcserver.getRegistrationToken()
        console.log(token);
      } catch (error) {
        console.log(error);
      }
    });
    rtcserver.onNotification = (payload) => {
      console.log('New notification received:', payload);
      document.getElementById("messages").append(JSON.stringify(payload));
    };
  </script>
</body>

</html>

you must have a service worker file present at the root. check with the name firebase-messaging-sw.js

About

i am creating a new server to client push communication method based on webRTC

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published