iframe-client
v0.0.6
Published
An iframe client for the browser
Downloads
8
Readme
iframe-client
An iframe client for the browser
Installation
npm install iframe-client
Usage
const iframeClient = new IframeClient();
iframeClient.trustyOrigins = ['*'];
iframeClient.onMessage((data, event) => {
console.log('Get a message from the parent window', data);
iframeClient.postMessage('A auto-response from the embed page');
});
License
MIT