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

Ant Colony Optimization

Ant Colony Optimization

Marco Dorigo、Thomas Stützle / A Bradford Book / 2004-6-4 / USD 45.00

The complex social behaviors of ants have been much studied by science, and computer scientists are now finding that these behavior patterns can provide models for solving difficult combinatorial opti......一起来看看 《Ant Colony Optimization》 这本书的介绍吧!

RGB转16进制工具
RGB转16进制工具

RGB HEX 互转工具

在线进制转换器
在线进制转换器

各进制数互转换器

HEX HSV 转换工具
HEX HSV 转换工具

HEX HSV 互换工具