文件名称:protoman:为不同目的创建自己的网络协议的框架
文件大小:7KB
文件格式:ZIP
更新时间:2024-08-01 09:12:51
JavaScript
原始人 ProtoMan 是一个有用的框架,可以为不同的目的创建自己的网络协议,例如 RPC、隧道等。 安装 你可以安装 protoman vim NPM: npm install protoman 用法 你可能想创建一个支持你自己协议的服务器,下面是一个例子: var net = require ( 'net' ) ; var ProtoMan = require ( 'protoman' ) var server = net . createServer ( function ( client ) { // Initializing RPC and using the same method manager var protoman = new ProtoMan ( { stream : client } ) ; // Add methods protoman .
【文件预览】:
protoman-master
----.gitignore(587B)
----package.json(538B)
----LICENSE(1KB)
----examples()
--------client.js(376B)
--------server.js(722B)
----README.md(1KB)
----lib()
--------channel.js(2KB)
--------protoman.js(2KB)
--------encoding.js(434B)
--------packet.js(1KB)
--------router.js(662B)