@cloudpss/rpc
v0.5.0
Published
Rpc used in cloudpss, a simple shim of apache thrift
Readme
RPC 服务
用于 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更新 thrift binary
./build/upgrade-bin.ps1调试
pnpm start发布
pnpm version <patch|minor|major>
pnpm publish --registry https://registry.npmjs.org