1.0.0 • Published 3 years ago
sdk-gomeet v1.0.0
Installation
npm i gomeet_sdkUsage
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."1.0.0
3 years ago