基于NodeJs的JSON协议的RPC解决方案 DNode

码农软件 · 软件分类 · Node.js 扩展 · 2019-04-17 12:12:34

软件介绍

DNode:一个非常不错的基于NodeJs的JSON协议的RPC远程调用解决方案,并且还可以实现浏览器端直接调用远程服务(通过基于socket.io的websocket开发库)

dnode: freestyle rpc

安装方法:npm install dnode

示例代码:

var dnode = require('dnode');

dnode.connect(5050, function (remote) {
    remote.zing(66, function (n) {
        console.log('n = ' + n);
    });
});

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

Machine Learning in Action

Machine Learning in Action

Peter Harrington / Manning Publications / 2012-4-19 / GBP 29.99

It's been said that data is the new "dirt"—the raw material from which and on which you build the structures of the modern world. And like dirt, data can seem like a limitless, undifferentiated mass. ......一起来看看 《Machine Learning in Action》 这本书的介绍吧!

MD5 加密
MD5 加密

MD5 加密工具

SHA 加密
SHA 加密

SHA 加密工具

RGB HSV 转换
RGB HSV 转换

RGB HSV 互转工具