@univerjs/rpc-node
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)How is this guide?