Node 的 RPC 框架 kamote

码农软件 · 软件分类 · Node.js 扩展 · 2019-04-15 09:42:10

软件介绍

kamote 是 Node.js 下简单、快速的 RPC。

例子:

var kamote = require('kamote');
var server = new kamote.Server();

server.add('plusOne', function(value) {
    console.log(value + 1);
});

server.listen(9456);
var kamote = require('kamote');
var client = new kamote.Client();

client.plusOne(100, function(result) {
    console.log(result); // 101
});

client.reconnect(9456);

本文地址:https://codercto.com/soft/d/3619.html

Scalable Internet Architectures

Scalable Internet Architectures

Theo Schlossnagle / Sams Publishing / 2006-7-31 / USD 49.99

As a developer, you are aware of the increasing concern amongst developers and site architects that websites be able to handle the vast number of visitors that flood the Internet on a daily basis. Sc......一起来看看 《Scalable Internet Architectures》 这本书的介绍吧!

JSON 在线解析
JSON 在线解析

在线 JSON 格式化工具

HTML 编码/解码
HTML 编码/解码

HTML 编码/解码

HEX CMYK 转换工具
HEX CMYK 转换工具

HEX CMYK 互转工具