1.0.0 • Published 1 year ago

sdk-gomeet v1.0.0

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."