BrowserGap client-side library
npm install browsergap.jsBrowserGap client side library
BG.openSecurely(url: URI, options: BGOptions)An API to open a link in a secure remote browser context. Calling the below will open a new tab.
``js
import BrowserGap from 'browsergap';
const BG = BrowserGap('
BG.openSecurely(url);
``