Mesibo Javascript Chat SDK
Estimated reading time: 1 minuteInstall Mesibo Javascript SDK
The easiest way to install Mesibo Javascript SDK is to include following in <HEAD>
section of your HTML file:
<script type="text/javascript" src="https://api.mesibo.com/mesibo.js"></script>
You can also use async
and defer
attributes inside script
tag if requires.
Alternatively, you may also use DOM method to load the mesibo JS on demand when it is not possible to use the script tag.
const script = document.createElement("script");
script.src = "https://api.mesibo.com/mesibo.js";
document.body.appendChild(script);
You must use a secure website (https) to use mesibo javascript. It may NOT work from
http://
orfile://
sites due to browser security restrictions.
Sample code
You can download sample code for Messaging, Voice and Video Call using mesibo Javascript SDK from our GitHub Repository
That’s All!
You can now begin developing features with mesibo.
javascript chat sdk, messaging sdk for javascript, javascript sdk for chat, install sdk through javascript