tl-iframe-rpc

``` parent.html

Usage no npm install needed!

<script type="module">
  import tlIframeRpc from 'https://cdn.skypack.dev/tl-iframe-rpc';
</script>

README

使用

parent.html

expose(document.getElementById('iframe').contentWindow, {
    getUserInfo: () => ({ id: 123, name: 'name' }),
});
child.html

rpc.addEventListener('test', () => {
    console.log('事件回调');
});