@veellv/browser-web
v1.0.0-rc.3
Published
Professional Web SDK for the Veellv In-App Browser ecosystem.
Readme
@veellv/browser-web
Official Veellv Browser SDK for web applications.
It exposes the same request, result, session/controller and capability vocabulary as the mobile SDKs. Browser windows are opened through a hardened runtime abstraction and lifecycle is tracked until the window closes.
import { VeellvBrowser } from "@veellv/browser-web";
const browser = new VeellvBrowser({ defaultAllowedDomains: ["veellv.com"] });
const result = await browser.open({ url: "https://veellv.com", mode: "external" });The web platform cannot reproduce native embedded/authentication surfaces; those differences are declared through capabilities instead of emulated.
See examples/web/browser-lab.
