@univerjs/rpc-node
本 API 页面目前提供英文正文。代码签名与标识符不随界面语言变化。
Node.js RPC plugins for Univer main-thread and worker communication.
TypeScript
import { fileURLToPath } from 'node:url'import { UniverRPCNodeMainPlugin } from '@univerjs/rpc-node'univer.registerPlugin(UniverRPCNodeMainPlugin, { workerSrc: fileURLToPath(new URL('./worker.js', import.meta.url)),})workerSrc is required when the main-thread plugin starts. Build the following worker entry separately and point workerSrc to its output.
TypeScript
import { UniverRPCNodeWorkerPlugin } from '@univerjs/rpc-node'univer.registerPlugin(UniverRPCNodeWorkerPlugin)你觉得这篇文档如何?