@episte-ai/episte-bridge
v0.0.2
Published
A package for integrating Episte Mini Apps with official Episte clients for iOS, Android and Web
Downloads
2
Readme
Episte Bridge
Usage
import {bridge, BridgeMethod} from '@episte-ai/episte-bridge';
function generateID() {
return Date.now() + '_' + Math.random();
}
// Sends event to app/web
const requestID = generateID();
bridge.send(BridgeMethod.Init, requestID);
// Subscribes to event, sended by app/web
bridge.subscribe((e) => console.log(e));