@ailhc/enet-pinus-pb
v0.2.9
Published
基于enet.IProtoHandler的适用于Pinus或pomelo的前端协议处理器
Downloads
92
Maintainers
Readme
@ailhc/enet-pinus-pb
基于enet.IProtoHandler的适用于Pinus或pomelo的前端协议处理器
特性
- typescript
- 支持pinus,pomelo
安装
通过npm安装
npm i @ailhc/enet-pinus-pb
本地link npm包
a. clone 项目仓库
```bash git clone https://github.com/AILHC/EasyGameFrameworkOpen ```
b. 在packages/enet-pinus-pb文件夹下
```bash npm link ```
c. 在项目游戏项目目录下
bash npm link @ailhc/enet-pinus-pb
使用源码
a. clone 项目仓库
bash git clone https://github.com/AILHC/EasyGameFrameworkOpen
b. 直接复制packages/enet-pinus-pb/src下的ts源码到项目文件夹下使用(排除index.ts)
Demo
使用
//注入NetNode,具体使用可见examples/egf-net-ws/egf-ccc-net-ws/assets/testcases/protobuf-test
const netMgr = new NetNode<string>();
const protoHandler = new PinusProtoHandler();
netMgr.init({
protoHandler: protoHandler
})