用于 CloudPSS 内部微服务的 RPC 框架,简单封装了 Apache Thrift。
pnpm add @cloudpss/rpc
- 创建 thrift IDL 文件(如:
rpc/my-service.thrift
) - 运行
thrift
命令生成 JS/TS 接口pnpm thrift -r --gen js:ts,es6,node -out ./src/thrift
import * as MyService from './thrift/MyService';
import { createServer } from '@cloudpss/rpc';
const service = createServer();
service.route('my-service', MyService, {
// implementation
add(a, b) {
return a + b;
},
});
service.listen(Number(process.env.PORT || 4000));
import * as MyService from './thrift/MyService';
import { createClient } from '@cloudpss/rpc';
const client = createClient({
host: 'localhost',
port: Number(process.env.PORT || 4000),
});
const service = client.get('my-service', MyService);
// ...
// use service here
// ...
const result = await service.add(1, 2);
client.destroy();
pnpm install
./build/upgrade-bin.ps1
pnpm start
pnpm version <patch|minor|major>
pnpm publish --registry https://registry.npmjs.org