文件名称:postmsg-rpc:在window.postMessage库上的微型RPC
文件大小:55KB
文件格式:ZIP
更新时间:2024-06-13 06:00:57
JavaScript
Postmsg-rpc 在库上的微型RPC 安装 npm install postmsg-rpc 用法 在您要调用的窗口( “服务器” )中: import { expose } from 'postmsg-rpc' const fruitService = { getFruits : ( /* arg0, arg1, ... */ ) => new Promise ( /* ... */ ) } // Expose this function for RPC from other windows expose ( 'getFruits' , fruitService . getFruits ) 在另一个窗口( “客户端” )中: import { call } from 'postmsg-rpc' // Call the exposed function const fr
【文件预览】:
postmsg-rpc-master
----.gitignore(38B)
----.babelrc(72B)
----package.json(1KB)
----package-lock.json(243KB)
----src()
--------client.js(2KB)
--------index.js(96B)
--------server.js(1KB)
----.travis.yml(39B)
----LICENSE(1KB)
----README.md(5KB)
----.npmignore(34B)
----test()
--------helpers()
--------server.callback.test.js(3KB)
--------client.test.js(4KB)
--------fixtures()
--------server.test.js(3KB)