1.0.2 • Published 1 year ago

gomeet-app-sdk v1.0.2

Weekly downloads
-
License
VNPT IT2
Repository
-
Last release
1 year ago

Installation

npm i gomeet_sdk

Usage

ES6 import

import { roomService, mediasoupService } from "gomeet_sdk";

const myString = "This is a string.";
const str_response = roomService.getMyString(myString);
console.log(str_response); // "My string: This is a string."

CommonJS require

const { roomService, mediasoupService } = require('gomeet_sdk');

const myString = "This is a string.";
const str_response = roomService.getMyString(myString);
console.log(str_response); // "My string: This is a string."