文件名称:sync-rpc:通过将异步命令放在单独的进程中来同步运行异步命令
文件大小:10KB
文件格式:ZIP
更新时间:2024-06-13 18:22:35
JavaScript
同步rpc 通过将异步命令放在单独的进程中来同步运行异步命令 安装 npm install sync-rpc --save 用法 worker.js function init ( connection ) { // you can setup any connections you need here return function ( message ) { // Note how even though we return a promise, the resulting rpc client will be synchronous return Promise . resolve ( 'sent ' + message + ' to ' + connection ) ; } } module . exports = init ; const
【文件预览】:
sync-rpc-master
----.gitignore(321B)
----README.md(1KB)
----appveyor.yml(468B)
----.prettierrc(78B)
----HISTORY.md(54B)
----package.json(919B)
----LICENSE.md(1KB)
----.travis.yml(158B)
----.editorconfig(147B)
----lib()
--------find-port.js(183B)
--------json-buffer()
--------__tests__()
--------worker.js(2KB)
--------test-worker.js(257B)
--------index.js(5KB)