1.2.0 • Published 6 months ago

iframe-ipcs v1.2.0

Weekly downloads
-
License
MIT
Repository
github
Last release
6 months ago

iframe-ipcs

NPM Version NPM Downloads NPM License

跨iframe通讯,对齐promise调用体验。加密传递数据

Install

npm install iframe-ipcs --save

Usage

支持promise编程

import { IframeIPCs } from 'iframe-ipcs';
const iframeIpc = new IframeIPCs('namespace', { aes: 'abcdefg' });

const serverApi = iframeIpc.defServerAPI('api123', async (args: number): Promise<string> => {
  return '' + args;
});

// top 外层 ifreame
iframeIpc.initFrameServer();

// client 内层 iframe
serverApi(1234).then((result) => console.log(result));

Example

click

1.2.0

6 months ago

1.1.3

12 months ago

1.1.2

12 months ago

1.1.1

12 months ago

1.1.0

12 months ago

1.0.0

12 months ago